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