Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-09-30 | Allow attributes in if-else, assert directive's conditions | Boris Kolpackov | 2 | -0/+23 | |
2016-12-01 | Move old tests to old-tests/ | Boris Kolpackov | 3 | -177/+0 | |
2016-07-21 | Add support for single line if-blocks | Boris Kolpackov | 2 | -2/+27 | |
So now we can do: if true print true else print false Instead having to do: if true { print true } else { print false } | |||||
2016-07-20 | Implement support for <, >, <=, >= in eval context | Boris Kolpackov | 2 | -0/+6 | |
Now can write: if ($build.version > 30000) | |||||
2016-06-18 | Port to MinGW | Karen Arutyunov | 1 | -1/+1 | |
2016-04-02 | Add attribute syntax infrastructure | Boris Kolpackov | 1 | -1/+1 | |
2016-01-21 | Add support for ==, != in eval context | Boris Kolpackov | 2 | -0/+20 | |
2015-12-03 | Implement if-else conditions | Boris Kolpackov | 3 | -0/+126 | |
if if! elif elif! else The expression should evaluate to true of false. The if! and elif! versions are provided as shortcuts to writing if (!...). See tests/if-else for examples. |