leo/simple.program
2020-04-17 12:51:02 -07:00

9 lines
176 B
Plaintext

from "./path/to/my/module" import MySymbol
def foo() -> (field):
// return myGlobal <- not allowed
return 42
def main() -> (field):
myGlobal = 42
return foo()