1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 22:01:15 +02:00

Add comparison operators ‘<’, ‘<=’, ‘>’ and ‘>=’

This commit is contained in:
Eelco Dolstra 2013-08-02 18:39:40 +02:00
parent 47701677e8
commit 3d77b28eac
4 changed files with 31 additions and 1 deletions

View file

@ -101,6 +101,8 @@ or { return OR_KW; }
\=\= { return EQ; }
\!\= { return NEQ; }
\<\= { return LEQ; }
\>\= { return GEQ; }
\&\& { return AND; }
\|\| { return OR; }
\-\> { return IMPL; }