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/function.io

8 lines
109 B
Io

println "Time to define a function";
fun str myFunction(int myNum) {
println myNum;
}
myFunction(3){};