8 lines
68 B
Plaintext
8 lines
68 B
Plaintext
proc print2(a: int) {
|
|
printi(a);
|
|
}
|
|
|
|
proc main() {
|
|
print2(14);
|
|
}
|