diff --git a/src/main/resources/gombaila/simple.gb b/src/main/resources/gombaila/simple.gb index e69de29..9388127 100644 --- a/src/main/resources/gombaila/simple.gb +++ b/src/main/resources/gombaila/simple.gb @@ -0,0 +1,9 @@ +// Program with comment +let x = 12; +let y = 2 * x; +y = y - 1; +if (y) { + exit (y); +} else { + exit (x); +}