Files
Toy/scripts/hello_world.toy

21 lines
120 B
Plaintext

/*
{
fn hello() {
print "Hello world";
}
hello();
}
*/
{
fn hello(arg) {
print arg;
}
hello("world");
}