This extension provides comprehensive language support for EzScript within Visual Studio Code.
Features
Syntax highlighting
Code snippets
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:
function factorial(n):
if n is equal to 0 then
return 1
else:
return n * factorial(n - 1)
let x be input("Enter a number: ")
let result be factorial(int(x))
print "Factorial of {x} is {result}"