7 lines
199 B
Text
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
|