EZ Documentation

Welcome to the EZ documentation. EZ is a simple programming language designed to teach real programming fundamentals without unnecessary complexity.

Quick Start

  1. Download EZ for your platform
  2. Install EZ on your system
  3. 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.

  1. 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.