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

6 lines
85 B
Io
Raw Normal View History

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