Hello World
Create main.fer:
fn main() { println("Hello world")}Run it:
ferret run main.ferWhat this shows:
fn main()is the program entrypoint.println(...)is the simplest output path for quick examples.
Create main.fer:
fn main() { println("Hello world")}Run it:
ferret run main.ferWhat this shows:
fn main() is the program entrypoint.println(...) is the simplest output path for quick examples.