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/test.io
2025-05-10 21:28:56 +10:00

13 lines
338 B
Io

let str thing1 "dingus";
let str thing2 "dingus";
if thing1 == thing2 {
println "thing 1 and thing 2 are the same";
}
print "this is printing something without a new line";
println " this is coming from a seperate print statement lols";
print "Say some wise words... ";
println "Ah, '" + input + "', some very wise words indeed!";