RosettaCodeData/Task/Call-a-function/Phix/call-a-function-3.phix
2016-12-05 23:44:36 +01:00

6 lines
215 B
Text

function myfunction(integer a, string b="default")
return {a,b}
end function
--? myfunction() -- illegal, compile-time error
?myfunction(1) -- displays {1,"default"}
?myfunction(2,"that") -- displays {2,"that"}