Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>EZCodeNew to Visual Studio Code? Get it now.
EZCode

EZCode

Lukas Man Dyd

|
4 installs
| (1) | Free
Welcome to EZcode.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

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

  1. Download the latest EZCode release from the Releases page.
  2. Run the .exe installer and follow the steps.
  3. Ensure EZCode is added to your system PATH.
  4. Open a terminal and type:
    EZ test.ez
    
    If you see Hello, EZCode!, it's installed correctly!

2. Install the VS Code Extension

  1. Download the latest .vsix file from the Releases page.
  2. Open VS Code and go to Extensions (Ctrl+Shift+X).
  3. Click on ... (top-right corner) → Install from VSIX....
  4. 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

🌍 Community & Contributing

We welcome contributions! If you’d like to help:

  1. Fork the repo
  2. Make your changes
  3. Submit a Pull Request (PR)

🔗 Links

  • GitHub Repo
  • VS Code Marketplace (Coming Soon)
  • Website (Coming Soon)

EZCode - Programming Made EZ! 😎

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft