Hello, world
fn main() -> int is the entry point. println! writes to stdout with a trailing newline; the bang signals it's a macro. The return value is the process exit code.
Save the snippet as hello.glide and run it with glide run hello.glide.
fn main() -> int {
println!("hello, glide");
return 0;
}