Quick Start

Your first ProXPL program

Your First Program

Create a file named hello.prox:

// hello.prox
func main() {
    print("Welcome to ProXPL!");
    
    let name = input("What is your name? ");
    print("Hello, " + name + "!");
}

main();

Run It

Using the ProXPL CLI:

prox run hello.prox

Output

Welcome to ProXPL!
What is your name? Alice
Hello, Alice!