7 lines
138 B
Text
7 lines
138 B
Text
|
|
function increment(integer i, integer inc=1)
|
||
|
|
return i+inc
|
||
|
|
end function
|
||
|
|
|
||
|
|
?increment(5) -- shows 6
|
||
|
|
?increment(5,2) -- shows 7
|