catala/examples/tutorial_en
Louis Gesbert 0ab7a0f9ce Turn all existing tests to inline tests
Done using
```bash
process() { FILE=$1; awk 'match($0, /^```catala-test *{ *id *= *"(.*)" *}/, a) {print "```catala-test-inline"; f="'"$(dirname $FILE)/output/$(basename $FILE)"'." a[1]; getline; print "$ " $0; while ((getline<f) > 0) print; next} {print}' $FILE >$FILE.new; mv $FILE.new $FILE; }
for f in tests/test_*/*/*.catala_* examples/**/*.catala_*; do process $f; git add $f; done
for d in $(find -name output -type d); do git rm -r $d; done
```
2022-09-23 14:45:10 +02:00
..
tests Turn all existing tests to inline tests 2022-09-23 14:45:10 +02:00
.gitignore Generated OCaml has valid syntax 2021-01-28 13:58:59 +01:00
Makefile create seperate folders for English and French tutorials 2020-12-24 11:12:57 +01:00
tutorial_en.catala_en Fix all lines too long problems & update assets 2022-08-29 15:46:06 +02:00