aboutsummaryrefslogtreecommitdiff
path: root/test.sil
diff options
context:
space:
mode:
authorCamil Staps2017-07-19 09:22:59 +0000
committerCamil Staps2017-07-19 09:22:59 +0000
commit324b813db8f53b1291b29d0f42495bcf1aa4022f (patch)
tree56ec65cf09d6711462f5f71649ae924d70e8925d /test.sil
parentAllow / in filenames (diff)
Working fibonacci
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);
-}