mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 01:32:13 +00:00
21 lines
193 B
Plaintext
21 lines
193 B
Plaintext
vector vec
|
|
inputs y
|
|
outputs y
|
|
trashes z, n
|
|
|
|
routine foo
|
|
inputs x
|
|
outputs x
|
|
trashes z, n
|
|
{
|
|
inc x
|
|
}
|
|
|
|
routine main
|
|
inputs foo
|
|
outputs vec
|
|
trashes a, z, n
|
|
{
|
|
copy foo, vec
|
|
}
|