catala/tests/test_dec/good/rounding.catala_en
Louis Gesbert f236e2cfb2 Replace the type conversion and rounding operators with overloads
Ref. #366

Also updates `CONTRIBUTING.md`.

This was pretty straight-forward :)
2022-12-13 15:32:49 +01:00

25 lines
471 B
Plaintext

## Article
```catala
declaration scope A:
output x content decimal
output y content decimal
output x1 content decimal
output y1 content decimal
scope A:
definition x equals 84.648665
definition y equals 4.368297
definition x1 equals round of x
definition y1 equals round of y
```
```catala-test-inline
$ catala Interpret -s A
[RESULT] Computation successful! Results:
[RESULT] x = 84.648665
[RESULT] x1 = 85.
[RESULT] y = 4.368297
[RESULT] y1 = 4.
```