This website requires JavaScript.
Explore
Help
Register
Sign In
belka
/
elna
Watch
1
Star
0
Fork
0
You've already forked elna
Code
Issues
4
Pull Requests
Releases
Activity
4efda21007
elna
/
tests
/
vm
/
print_in_proc.elna
9 lines
92 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Reverse procedure parameters on the stack
2024-11-28 16:28:19 +01:00
proc print2(a: int, b: int) {
Implement the while loop
2024-11-24 13:05:11 +01:00
printi(a);
Reverse procedure parameters on the stack
2024-11-28 16:28:19 +01:00
printi(b);
Implement the while loop
2024-11-24 13:05:11 +01:00
}
proc main() {
Reverse procedure parameters on the stack
2024-11-28 16:28:19 +01:00
print2(14, 8);
Implement the while loop
2024-11-24 13:05:11 +01:00
}
Reference in New Issue
Copy Permalink