Files
2024-01-15 15:18:59 -06:00

22 lines
822 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Snowball compiler (MIT) l、
// https://github.com/snowball-lang/snowball (゚、 。7
// l、゙~ヽ
// Simple example for the lang じし(_,)
// Docs: https://snowball-lang.gitbook.io/docs/
// Import the core library.
// This is required for the println function.
import std::io;
// The main function is the entry point of the program.
// It is called when the program is started.
public func main() i32 {
// This is a function from the standard library.
// It prints the given string to the console.
io::println("Hello, world!");
// The return value of the main function is the exit code of the program.
// A value of 0 means that the program exited successfully.
return 0;
}