Hello World

Every pyr program starts with a main function.

fn main() {
  println("hello world")
}
$ pyr run hello-world.pyr
hello world