Files
metadesk/samples/toy_language/test.mdesk
T

9 lines
64 B
Plaintext

add: (x, y) { x + y }
main:()
{
a: 1;
b: 2;
add(a, b);
}