aboutsummaryrefslogtreecommitdiff
path: root/test.sil
diff options
context:
space:
mode:
Diffstat (limited to 'test.sil')
-rw-r--r--test.sil11
1 files changed, 0 insertions, 11 deletions
diff --git a/test.sil b/test.sil
deleted file mode 100644
index 6493308..0000000
--- a/test.sil
+++ /dev/null
@@ -1,11 +0,0 @@
-Int second(Int x, Int y) {
- Int a, b;
- a := x;
- x := y;
- y := a;
- return y;
-}
-
-Int main () {
- return second(100, 200);
-}