RosettaCodeData/Task/Scope-modifiers/Phix/scope-modifiers-1.phix

11 lines
215 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
forward function localf() -- not normally necesssary, but will not harm
forward global function globalf() -- ""
2023-07-01 11:58:00 -04:00
2026-04-30 12:34:36 -04:00
function localf()
return 1
end function
2023-07-01 11:58:00 -04:00
2026-04-30 12:34:36 -04:00
global function globalf()
return 2
end function