EZCode - The Easiest Programming Language 🚀
EZCode is a beginner-friendly programming language designed for simplicity while still being powerful enough to build games, applications, and even Discord bots!
📥 Installation
1. Install EZCode
- Download the latest EZCode release from the Releases page.
- Run the
.exe
installer and follow the steps.
- Ensure
EZCode
is added to your system PATH
.
- Open a terminal and type:
EZ test.ez
If you see Hello, EZCode!
, it's installed correctly!
2. Install the VS Code Extension
- Download the latest
.vsix
file from the Releases page.
- Open VS Code and go to Extensions (
Ctrl+Shift+X
).
- Click on
...
(top-right corner) → Install from VSIX...
.
- Select the downloaded
.vsix
file.
📝 EZCode Syntax
EZCode is designed to be intuitive and easy to understand. Here’s a basic example:
create button "playButton" at 100, 200
with text "Play"
create sound "clickSound" from "click.mp3"
when button "playButton" is clicked
play sound "clickSound"
end when
🎮 Mini-Game Example (Number Guessing Game)
print "Welcome to the Number Guessing Game!"
set secret_number to random 1 to 10
set attempts to 0
loop
ask for "Guess a number:" as guess
add 1 to attempts
if guess is secret_number
print "Congrats! You guessed it in" attempts "attempts!"
stop
else if guess is less than secret_number
print "Too low! Try again."
else
print "Too high! Try again."
end if
end loop
⚡ Features
✅ Simple, human-readable syntax
✅ Buttons, sounds, and UI elements
✅ Supports logic, loops, and conditions
✅ Can be extended with Python modules
✅ Future support for a custom EZCode Game Engine
We welcome contributions! If you’d like to help:
- Fork the repo
- Make your changes
- Submit a Pull Request (PR)
🔗 Links
EZCode - Programming Made EZ! 😎