From d79d396814f46dd1289550eee779b1d1caebea33 Mon Sep 17 00:00:00 2001 From: sofia Date: Fri, 25 Jul 2025 15:18:42 +0300 Subject: [PATCH] Update README and libtest.sh --- README.md | 1 + libtest.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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: