
better path going forward to handling upgrades. Old syntax files will stick around for compatibility purposes. Old syntax can be parsed into valid syntax trees via the old syntax (.peg) files, and then old syntax trees should be valid and can be upgraded via the normal code path. This change has lots of improvements to Nomsu codegen too.
20 lines
336 B
Plaintext
20 lines
336 B
Plaintext
#!/usr/bin/env nomsu -V1
|
|
#
|
|
Tests for the stuff defined in core/control_flow.nom
|
|
|
|
use "core"
|
|
|
|
%nums <- []
|
|
%co <-
|
|
coroutine
|
|
-> 4
|
|
-> 5
|
|
repeat 3 times
|
|
-> 6
|
|
for % in coroutine %co
|
|
add % to %nums
|
|
|
|
assume (%nums = [4,5,6,6,6]) or barf "Coroutine iteration failed"
|
|
|
|
say "Coroutines test passed."
|