diff --git a/README.md b/README.md index fcfd86f..8c42771 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ Currently missing big features (TODOs) are: - ~~Intrinsic functions~~ (DONE) - ~~Ability to specify types in literals and variable definitions~~ (DONE) - ~~Debug Information~~ (DONE) +- Fix struct initialization (wrong order and missing fields allowed now) - Not-Unary - Importing types from other modules - Importable binops? diff --git a/libtest.sh b/libtest.sh index fe345dc..654be8a 100755 --- a/libtest.sh +++ b/libtest.sh @@ -17,7 +17,7 @@ BINARY="$(echo $1 | cut -d'.' -f1)"".out" echo $1 cargo run --example cli $@ && \ -$BINARY ; echo "Return value: ""$?" +./$BINARY ; echo "Return value: ""$?" ## Command from: clang -v hello.o -o test ## Original command: