This repository has been archived on 2025-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
Files
iodine/examples/names.io
2025-05-10 21:28:56 +10:00

4 lines
112 B
Io

println "Hello there!";
print "What is your name? ";
let str yourName input;
println "Hello, " + yourName + "!";