Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-07-21 | Add support for single line if-blocks | Boris Kolpackov | 1 | -0/+3 | |
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 | 1 | -0/+1 | |
Now can write: if ($build.version > 30000) | |||||
2016-01-21 | Add support for ==, != in eval context | Boris Kolpackov | 1 | -0/+3 | |
2015-12-03 | Implement if-else conditions | Boris Kolpackov | 1 | -0/+9 | |
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. |