ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

commit 7800702bcd80fbf5f2316bf7574b961a0ddf7083
parent f41b35e364522e0b9aa87619da3333a985b834a4
Author: citbl <citbl@citbl.org>
Date:   Sun, 16 Nov 2025 20:01:40 +1000

add test

Diffstat:
Atests/ex-if-no-parens-2.ox | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/tests/ex-if-no-parens-2.ox b/tests/ex-if-no-parens-2.ox @@ -0,0 +1,5 @@ +void main() { + int i = 0; + if(i == 0) print("yes"); else print("no"); + if(i != 0) print("no"); else print("yes"); +}