mirror of
https://github.com/NixOS/nix
synced 2025-07-07 01:51:47 +02:00
Add integer ‘-’, ‘*’ and ‘/’ operators
This commit is contained in:
parent
5d147e125c
commit
47701677e8
4 changed files with 16 additions and 2 deletions
|
@ -49,4 +49,8 @@ rec {
|
|||
if comp (head list2) (head list1) then [(head list2)] ++ mergeLists comp list1 (tail list2) else
|
||||
[(head list1)] ++ mergeLists comp (tail list1) list2;
|
||||
|
||||
id = x: x;
|
||||
|
||||
const = x: y: x;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue