forked from lix-project/lix
5d147e125c
This allows saying "-1" instead of "builtins.sub 0 1".
27 lines
473 B
Nix
27 lines
473 B
Nix
with import ./lib.nix;
|
|
|
|
let {
|
|
|
|
range = first: last:
|
|
if builtins.lessThan last first
|
|
then []
|
|
else [first] ++ range (builtins.add first 1) last;
|
|
|
|
/* Supposedly tail recursive version:
|
|
|
|
range_ = accum: first: last:
|
|
if first == last then ([first] ++ accum)
|
|
else range_ ([first] ++ accum) (builtins.add first 1) last;
|
|
|
|
range = range_ [];
|
|
*/
|
|
|
|
x = 12;
|
|
|
|
body = sum
|
|
[ (sum (range 1 50))
|
|
(123 + 456)
|
|
(0 + -10 + -(-11) + -x)
|
|
];
|
|
}
|