DEBSOURCES
Skip Quicknav
sources / javacc4 / 4.0-3 / examples / Interpreter / odd.spl
12345678910111213
int num; boolean odd; num = 10; read num; if (num % 2 != 0) odd = true; else odd = false; write odd;