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