Files
Toy/scripts/function.toy

9 lines
102 B
Plaintext

fn name(argument: type, arg2: type, ...rest): int {
print "hello world";
return 0;
}
print name;