mirror of
https://github.com/catseye/SixtyPical.git
synced 2025-02-12 20:30:27 +00:00
11 lines
179 B
Plaintext
11 lines
179 B
Plaintext
vector foo outputs x trashes z, n
|
|
|
|
routine bar outputs x trashes z, n {
|
|
ld x, 200
|
|
}
|
|
|
|
routine main inputs bar outputs x, foo trashes a, z, n {
|
|
copy bar, foo
|
|
call foo
|
|
}
|