EZ Documentation
Welcome to the EZ documentation. EZ is a simple programming language designed to teach real programming fundamentals without unnecessary complexity.
Quick Start
- Download EZ for your platform
- Install EZ on your system
- Create a file called
hello.ez:
import @std
do main() {
std.println("Hello, EZ!")
}
Note: Every EZ program must have a
main()function — this is where your program starts running.
Save your file.
- Use the following command to run your program:
ez hello.ez
Output:
Hello, EZ!
What’s Next?
Language Reference
Learn about variables, functions, and more.
Standard Library
Explore the built-in modules.
Examples
Real-world code examples and recipes.