comparison python/ppci/c3/grammar.txt @ 354:5477e499b039

Added some sort of string functionality
author Windel Bouwman
date Thu, 13 Mar 2014 18:59:06 +0100
parents
children
comparison
equal deleted inserted replaced
353:b8ad45b3a573 354:5477e499b039
1
2
3 stmt: if_stmt | while_stmt | for_stmt | assign_stmt | compound_stmt
4
5 compound_stmt: '{' stmt ';' stmt ... '}'
6 if_stmt: 'if' '(' cond ')' stmt
7 assign_stmt: lhs '=' expr
8
9 cond:
10
11 expr:
12