- or download this
names = John Joe "Mary Sue" James
- or download this
startrule: calculation
statement: grouped_op | number
...
add_calculation: statement '+' statement
subtract_calculation: statement '-' statement
number: /\d+/
- or download this
#!/usr/bin/perl -wT
...
print $test . ': ' .
( defined($parser->startrule( $test ) )?"good":"bad") . "\n";
}
- or download this
#!/usr/bin/perl -wT
...
#6 + (3 - 2): 7
#(6 + (3 - 2)) + 1: 8