Files
metadesk/samples/toy_language/test.mdesk
T

11 lines
75 B
Plaintext

@proc foo:(x, y, z)
{
(x + y) * z
}
@proc main:()
{
foo(10, 20, 30);
}