drafting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
simonpetit 2024-12-13 13:05:00 +00:00
parent 7dcf616740
commit 7880437196

View File

@ -44,4 +44,6 @@ is strictly equivalent to :
whereas the strings are not equal.
The most naive approach I came with (and because I wanted a quick prototype so I didn't think much about it) was to remove all carriage return from the parser output, using `tr -d '\n'`
The most naive approach I came with (and because I wanted a quick prototype so I didn't think much about it) was to remove all carriage return from the parser output, using `tr -d '\n'`.
All tests are hard coded within the script. I am aware this might not be the best solution, but on the other hand as this is a script, and not a compiled program, it is as easy as changing "hardcoded" tests as it would be on a separate config file, so its does not bother me right now.