Initializers & Finalizers It is sometimes useful to run code at startup and shutdown. Static initializers and finalizers are special functions that are run at startup and shutdown respectively. import std::io; fn void hello() @init { io::printf("hello"); } fn void world() @finalizer { io::printfn("world"); } fn void main() { io::printf(", "); }