EZ Documentation
Welcome to the EZ documentation. EZ is a statically-typed programming language that compiles to native binaries. It’s designed to be simple, clear, and safe — without unnecessary complexity.
Quick Start
- Download EZ for your platform
- Install EZ on your system
- Create a file called
hello.ez:
do main() {
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.