diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-06-12 18:04:18 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-06-12 18:04:41 -0700 |
| commit | 3c510e4ee5027aa5191e994bdf0a080a32a4b082 (patch) | |
| tree | b8d740f6ce0e263faa92967a63d16af07f3d45e7 /tests/control_flow.nom | |
| parent | b5fb8933af283d2b873a03ded085e8b69f374e81 (diff) | |
Lots of optimizations and simplifications, especially towards getting
better performance on luajit.
Diffstat (limited to 'tests/control_flow.nom')
| -rw-r--r-- | tests/control_flow.nom | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/tests/control_flow.nom b/tests/control_flow.nom index 886b59c..5553811 100644 --- a/tests/control_flow.nom +++ b/tests/control_flow.nom @@ -193,14 +193,15 @@ assume return %n ..= 6 -%nums <- [] -for % in - values - -> 4 - -> 5 - -> 6 -.. - add % to %nums - -assume (%nums = [4,5,6]) or barf "Coroutine iteration failed" +# + %nums <- [] + for % in + values + -> 4 + -> 5 + -> 6 + .. + add % to %nums + + assume (%nums = [4,5,6]) or barf "Coroutine iteration failed" |
