mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-25 21:25:00 -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);
|
|
}
|