lang0/tests/parsingpredeclaredfunction1.lang0
2025-02-09 15:03:47 +01:00

11 lines
144 B
Plaintext

func arg/
main:
check func "1" : "The function should return 1, even though it is not defined yet"
emit "Success"
/
func arg:
return arg
/