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

6 lines
257 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
include somefile.e as xxx
-- alternatively, within somefile.e:
namespace xxx -- (only supported in Phix for compatibility with Euphoria)
2023-07-01 11:58:00 -04:00
2026-04-30 12:34:36 -04:00
res = xxx:globalf() -- call a global function named globalf, specifically the one declared in somefile.e