about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-cmp-int-false.nix
blob: 7d6b30419facb5dd3ee8cc2fe6fb3852b0cb3604 (plain) (blame)
1
2
3
4
5
6
7
8
{
  eq = 69 == 42;
  ne = 42 != 42;
  lt = 2 < 1;
  le = 2 <= 1;
  gt = 1 > 2;
  ge = 1 >= 2;
}