Files
Toy/scripts/hello_world.toy
T
2026-05-17 09:47:46 +10:00

12 lines
89 B
Plaintext

if (true) {
print "Who?";
}
else if (true) {
print "What?";
}
else {
print "IDK";
}