jlang – Small and easy to learn language About the language: jlang is a small and easy to learn language designed by Jatin Bhateja. It chiefly does mathematical operations on data variables. Language is easy to understand and is basically developed for educational purpose. It is a case sensitive language and source programs should be written in small case. Language grammar file: decl_list func ; decl_list: VAR ':' list ';' ; list : ID ',' list | ID ; func : START stmts END ; stmts : stmt ';' stmts | stmt ';' ; stmt : ID '=' comp_expr ; comp_expr : comp_expr opt1 simp_expr | simp_expr ; opt1 : '+' | '-' ; simp_expr: simp_expr opt2 expr | expr ; expr : ID | NUM ; opt2: '*' | '/' ;