RosettaCodeData/Task/Introspection/Phix/introspection-3.phix
2026-04-30 12:34:36 -04:00

7 lines
199 B
Text

--include pmaths.e -- (an auto-include, ok but not needed)
--include complex.e -- (not an auto-include, needed if used)
integer fn = abs
--integer fn = complex_abs
if fn!=-1 then
?fn(-42)
end if