summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-10-04 22:54:07 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-10-04 22:54:07 -0400
commita5428d33e1c8045029d1935f925d85ea9d9e4013 (patch)
treedf28ebd82761d270ee733f5c08214e94ff7f5768
parent5b583f0f1b6aad9706536af5866a5673e90c74da (diff)
downloadroux-a5428d33e1c8045029d1935f925d85ea9d9e4013.tar.gz
remove example file
-rw-r--r--minic/test.minic15
1 files changed, 0 insertions, 15 deletions
diff --git a/minic/test.minic b/minic/test.minic
deleted file mode 100644
index 433ad17..0000000
--- a/minic/test.minic
+++ /dev/null
@@ -1,15 +0,0 @@
-main()
-{
- int x;
- int y;
- int *p;
-
- x = 0;
- p = &x;
- p[0] = 2 + 2;
- while (x > 3) {
- x = x - 1;
- }
-
- y = x == 3;
-}