Partially working function calling

This commit is contained in:
2025-12-28 13:41:05 +11:00
parent 337b88c148
commit b46a66cea7
3 changed files with 80 additions and 7 deletions

View File

@@ -1,4 +1,6 @@
def add(int a, int b) {
return a + b
def add(int a, int b) int {
puts "testing"
return 3
}
add(1, 2)
puts add(1 2)