From 5d1163cc03468f5032c0a29f983ec7ffc4f9ae54 Mon Sep 17 00:00:00 2001 From: v420v Date: Wed, 18 Dec 2024 07:42:12 +0900 Subject: [PATCH] update: README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0cf4c9e..5c0faa9 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ - No `break`, `continue` stmt. Use `goto` - Allows `13 <= age < 20` instead of `13 <= age && age < 20` - Variable length args `func(...)` can be accessed with built-in variables `argc i64` and `argv *i64` +- All values are extended to 64-bit when accessed - The compiler is written in itself - Default args don't have to be on the end (WIP)