about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-arithmetic-float.nix
blob: 9d12aee061b2d571bbb956ff7639b9cf1cd22bb4 (plain) (blame)
1
2
3
4
5
6
{
  add = 12.34 + 25.0;
  sub = 20.05 - 5.7;
  mul = 28.42 * 3.70;
  div = 18.5 / 17.5;
}