catala/tests/test_dec/good/zero_after_comma.catala_en
Louis Gesbert 71bb67163c Remove explicitely typed operators in tests and examples
Command used: `sed -i 's/\([-+*/><=]=\?\)[.$@^€$]/\1/g' **/*/*.catala_*`

The overload test, of course, is kept unchanged and ensures that explicit
operators still work.
2022-12-13 12:00:04 +01:00

20 lines
341 B
Plaintext

## Article
```catala
declaration scope A:
context output x content decimal
context output y content decimal
scope A:
definition x equals 4.0
definition y equals 1.0 + (x / 100.0)
assertion y = 1.04
```
```catala-test-inline
$ catala Interpret -s A
[RESULT] Computation successful! Results:
[RESULT] x = 4.
[RESULT] y = 1.04
```