This extension provides comprehensive language support for EzScript within Visual Studio Code.
Features
Syntax highlighting
Code snippets
Press F5 to run your .ez file
More features coming soon
Installation
Open the Extensions view in Visual Studio Code.
Search for EzScript.
Install the extension.
Usage
Open any .ez file to activate EzScript language features.
About EzScript
EzScript is a beginner-friendly, English-like programming language designed to be simple, readable, and powerful.
Example:
# Hello world
print("Hello, EzScript!")
# Variables
let name be "Player"
let score be 10
# Condition
if score > 5:
print("Welcome {name}, your score is {score}")
# Loop
loop 3 times:
print("EzScript is easy")