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
Raw Permalink Normal View History

2025-05-18 14:27:04 +10:00
println "Time to define a function";
2025-05-23 09:26:58 +10:00
fun str myFunction(int myNum) {
println myNum;
}
2025-05-20 15:03:08 +10:00
2025-05-23 09:26:58 +10:00
myFunction(3){};