Menu

[r4]: / trunk / python / python.lime  Maximize  Restore  History

Download this file

12 lines (7 with data), 104 Bytes

%class python
%start stmt

%left '+' '-'
%left '*' '/'

stmt = simple_stmt 
	 | compound_stmt
	 .