commit bd60990198d6ed1eb43892bb770fb9c93cac3b31 parent 7800702bcd80fbf5f2316bf7574b961a0ddf7083 Author: citbl <citbl@citbl.org> Date: Sun, 16 Nov 2025 20:09:38 +1000 add test Diffstat:
| A | tests/ex-for-no-parens.ox | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/tests/ex-for-no-parens.ox b/tests/ex-for-no-parens.ox @@ -0,0 +1,5 @@ +void main() { + for(int i = 0; i < 5; i++) + print(i); + +}