1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-07-09 09:29:04 +00:00
SixtyPical/tests/SixtyPical Syntax.md
2015-10-17 13:50:21 +01:00

823 B

Sixtypical Execution

This is a test suite, written in Falderal format, for the syntax of the Sixtypical language, disgregarding execution, static analysis, etc.

-> Functionality "Check syntax of Sixtypical program" is implemented by
-> shell command "bin/sixtypical %(test-body-file) && echo ok"

-> Tests for functionality "Check syntax of Sixtypical program"

Rudimentary program.

| routine main {
|     ld a, 0
|     add a, 1
| }
= ok

Syntax error

| routine foo (
|     ld a, 0
|     add a, 1
| )
? SyntaxError

Extern routines

| routine chrout
|   inputs a
|   trashes a
|   @ 65490
| 
| routine chrin
|   outputs a
|   trashes x
|   @ 65487
= ok