SkillAgentSearch skills...

ZedScript

ZedScript is a lightweight scripting language with a direct interpreter no parsing phase, everything executes line by line. It supports variables, math operations, input/output, comments, and Python embedding via py: blocks, making it fast, simple, and seamlessly integrated with Python for flexible scripting.

Install / Use

/learn @RealmWLS/ZedScript
About this skill

Quality Score

0/100

Supported Platforms

Zed

README

<img src="https://github.com/MrRealmWLS/ZedScript/blob/main/zedscript_logo.png?raw=true" alt="logo" width="200"/>

ZedScript

ZedScript is a lightweight scripting language with a direct interpreter no parsing phase, everything executes line by line. It supports variables, math operations, input/output, comments, and Python embedding via py: blocks, making it fast, simple, and seamlessly integrated with Python for flexible scripting.

Installation

git clone https://github.com/RealmWLS/ZedScript.git
cd ZedScript

Requires Python 3.8+.

Usage

run the command line:

python main.py <filename>

Syntax

Comments:

// This is a comment

Variable declaration:

var x = 10;                  // Declare variable
var name = input("Enter name: ");  // Get user input

Printing output:

print("Hello " + name);

Math operations:

var result = 5 + 3 * 2;

Python blocks:

py:
    z = x + result
endpy

Notes

  • Every statement must end with a semicolon ;.
  • Print() displays text.
  • input() reads user input.
  • Use py:endpy to execute Python code.
View on GitHub
GitHub Stars4
CategoryCustomer
Updated10h ago
Forks0

Languages

Python

Security Score

70/100

Audited on Mar 27, 2026

No findings