Hello Cyrus!

Let's start with the first program:

import std::io;

func main() {
    io::printfn("Hello, Cyrus\n");
}

Compiling the program

Let's take the above program and put it in a file called hello_world.cyr.

We can then run it with:

cyrus run hello_world.cyr

It should print Hello, World! and return back to the command line prompt.