The secret of getting ahead is getting started.
— Mark Twain
Hello World
NAME wyzer-hello-world - The entry point of a Wyzer program
SYNOPSIS
import std::io;
fn main() {
io::println("Hello, World!");
}
DESCRIPTION
Execution of a Wyzer program begins at the main function.
DETAILS
import std::io;: Imports the standard input/output module.fn main(): The mandatory entry point for the executable.io::println: Prints a string literal to standard output, appending a newline.