mirror of
https://github.com/catseye/SixtyPical.git
synced 2024-11-22 01:32:13 +00:00
Describe the behaviour just implemented.
This commit is contained in:
parent
6744ad29a9
commit
c707105cd3
@ -6,6 +6,8 @@ History of SixtyPical
|
|||||||
|
|
||||||
* Symbolic constants can be defined with the `const` keyword, and can
|
* Symbolic constants can be defined with the `const` keyword, and can
|
||||||
be used in most places where literal values can be used.
|
be used in most places where literal values can be used.
|
||||||
|
* Specifying multiple SixtyPical source files will produce a single
|
||||||
|
compiled result from their combination.
|
||||||
|
|
||||||
0.14
|
0.14
|
||||||
----
|
----
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
// This will not compile on its own, because there is no `main`.
|
||||||
|
// But this and `vector-main.60p` together will compile.
|
||||||
|
|
||||||
routine chrout
|
routine chrout
|
||||||
inputs a
|
inputs a
|
||||||
trashes a
|
trashes a
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
// This will not compile on its own, because `printa` and `printb` are not defined.
|
||||||
|
// But `vector-inc.60p` and this together will compile.
|
||||||
|
|
||||||
vector routine
|
vector routine
|
||||||
trashes a, z, n
|
trashes a, z, n
|
||||||
print
|
print
|
||||||
|
Loading…
Reference in New Issue
Block a user