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