mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
21 lines
120 B
Plaintext
21 lines
120 B
Plaintext
|
|
|
|
/*
|
|
{
|
|
fn hello() {
|
|
print "Hello world";
|
|
}
|
|
hello();
|
|
}
|
|
*/
|
|
|
|
{
|
|
fn hello(arg) {
|
|
print arg;
|
|
}
|
|
|
|
hello("world");
|
|
}
|
|
|
|
|