forked from solstice/solstice
Partially working function calling
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user