mirror of
https://github.com/Ed94/metadesk.git
synced 2026-07-15 14:01:28 -07:00
11 lines
75 B
Plaintext
11 lines
75 B
Plaintext
|
|
@proc foo:(x, y, z)
|
|
{
|
|
(x + y) * z
|
|
}
|
|
|
|
@proc main:()
|
|
{
|
|
foo(10, 20, 30);
|
|
}
|