about summary refs log tree commit diff
path: root/tests/lang/eval-okay-arithmetic.exp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2013-08-02 Let the ordering operators also work on stringsEelco Dolstra1-1/+1
E.g. ‘"foo" < "bar"’ now works.
2013-08-02 Add comparison operators ‘<’, ‘<=’, ‘>’ and ‘>=’Eelco Dolstra1-1/+1
2013-08-02 Add integer ‘-’, ‘*’ and ‘/’ operatorsEelco Dolstra1-1/+1
2013-08-02 Add a unary integer negation operatorEelco Dolstra1-1/+1
This allows saying "-1" instead of "builtins.sub 0 1".
2013-08-02 Overload the ‘+’ operator to support integer additionEelco Dolstra1-1/+1
2010-04-21 * Update the expected test output (no longer an ATerm).Eelco Dolstra1-1/+1
2006-09-22 * Builtin function `add' to add integers.Eelco Dolstra1-0/+1
* Put common test functions in tests/lang/lib.nix.