RosettaCodeData/Task/Scope-Function-names-and-labels/EasyLang/scope-function-names-and-labels.easy
2024-07-13 15:19:22 -07:00

13 lines
192 B
Text

# function names are global, the must be
# implemented or declared before usage
#
func foo1 a .
return a + 1
.
print foo1 2
#
funcdecl foo2 a .
print foo2 2
func foo2 a .
return a + 2
.