mirror of
https://github.com/egormanga/Slang.git
synced 2025-03-13 23:42:44 +03:00
8 lines
102 B
Plaintext
8 lines
102 B
Plaintext
int f(int x) = x+1
|
|
int f(int x, int y) = x+y+1
|
|
|
|
main {
|
|
stdio.println(f(1))
|
|
stdio.println(f(1, 2))
|
|
}
|