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