~ubuntu-branches/ubuntu/breezy/antlr/breezy

« back to all changes in this revision

Viewing changes to examples/python/calc/calc.in

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-06-29 16:11:22 UTC
  • mfrom: (0.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050629161122-g81crc3z92p5xhsg
Tags: 2.7.5-6ubuntu4
Build depend on java-gcj-compat-dev, depend on java-gcj-compat.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
begin 
 
2
 1+2;
 
3
 4+5; 
 
4
 --1;
 
5
 ++1;
 
6
 +-1;
 
7
 -+1;
 
8
  -1;
 
9
  +1;
 
10
  -0;
 
11
  +0;
 
12
 1+-2;
 
13
 -1+--2;
 
14
 1+2*3;
 
15
 (1+2)*3;
 
16
end