summaryrefslogtreecommitdiff
path: root/impl/antlr/generate.py
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au>2012-05-25 13:24:37 +1000
committerCarlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au>2012-05-25 13:24:37 +1000
commit61f90f14af8796bbed074538882e76f1e1bf3333 (patch)
tree5d1dc744b47817a39b905418b1fc76bb828cea4a /impl/antlr/generate.py
parentee8547cf3c89c51ff10603814e6f745466bc4c79 (diff)
Try to make some more modular Fixpoint algorithms.
Diffstat (limited to 'impl/antlr/generate.py')
-rw-r--r--impl/antlr/generate.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/impl/antlr/generate.py b/impl/antlr/generate.py
new file mode 100644
index 0000000..4513fe2
--- /dev/null
+++ b/impl/antlr/generate.py
@@ -0,0 +1,4 @@
+
+print 'x0 = 0'
+for i in xrange(10000):
+ print 'x' + str(i+1) + " = x" + str(i)