Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-02-07 | Drop copyright notice from source code | Karen Arutyunov | 2 | -2/+0 | |
2019-09-30 | Cleanup inappropriate use of parse_variable_value() | Boris Kolpackov | 1 | -0/+7 | |
2019-01-16 | Update copyright year | Karen Arutyunov | 2 | -2/+2 | |
2018-09-04 | Rename .test/test{} to .testscript/testscript{} | Boris Kolpackov | 2 | -3/+3 | |
2018-05-19 | Update copyright year | Karen Arutyunov | 2 | -2/+2 | |
2017-11-09 | Add support for for-loop | Boris Kolpackov | 2 | -0/+117 | |
The semantics is similar to the C++11 range-based for: list = 1 2 3 for i: $list print $i Note that there is no scoping of any kind for the loop variable ('i' in the above example). See tests/loop/for.test for some examples/ideas. In the future the plan is to also support more general while-loop as well as break and continue. |