1 2 3 4 5 6 7 8
// Utils module for Iris fn add(a, b) { return a + b; } fn greet(name) { return "Hello, " + name + "!"; }