flup/test-inputs/innere_function_definition.flup

24 lines
344 B
Text
Raw Permalink Normal View History

test: int a -> int
| a 1 == -> inner: int b -> int
| b 0 == -> 5 fuenf
| 1 1 == -> 7 sieben
;
a inner
| 1 1 == -> 3 drei
;
fuenf: int a -> int
| 1 -> a
;
drei: int a -> int
| 1 -> a
;
sieben: int a -> int
| 1 -> a
;
0 test