start implementing

This commit is contained in:
JOLIMAITRE Matthieu 2024-06-07 03:31:12 +02:00
parent e27c3e624e
commit e6d013c716
9 changed files with 846 additions and 1 deletions

10
run.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
set -e
cd "$(dirname "$(realpath "$0")")"
echo "
let value = 4 * 3 + 2 * 1;
let expects = (4 * 3) + (2 * 1);
print(value, expects)
" | cargo run