Files
highground-fork/tests/function.sols

7 lines
78 B
Plaintext
Raw Normal View History

2025-12-28 13:41:05 +11:00
def add(int a, int b) int {
puts "testing"
return 3
2025-12-26 13:50:14 +11:00
}
2025-12-28 13:41:05 +11:00
2025-12-28 13:49:05 +11:00
puts add(1, 2)