mirror of
https://github.com/anoma/juvix.git
synced 2024-11-30 14:13:27 +03:00
12 lines
125 B
Plaintext
12 lines
125 B
Plaintext
-- global variables and forward declarations
|
|
|
|
def x := (\x x) 5;
|
|
|
|
def g;
|
|
|
|
def f := \a \b g a + b;
|
|
|
|
def g := \y x * y;
|
|
|
|
f 2 3
|