1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2025-01-10 02:29:23 +00:00

Add missing example source

This commit is contained in:
Chris Pressey 2015-10-20 17:39:00 +01:00
parent 6e0ca3838e
commit 69fa91417c

10
eg/vector.60p Normal file
View File

@ -0,0 +1,10 @@
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
}