summary refs log tree commit diff stats
path: root/tests/compile/tfib.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/tfib.nim')
-rwxr-xr-xtests/compile/tfib.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/compile/tfib.nim b/tests/compile/tfib.nim
deleted file mode 100755
index 09a4d5038..000000000
--- a/tests/compile/tfib.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-
-iterator fibonacci(): int = 
-  var a = 0
-  var b = 1
-  while true: 
-    yield a
-    var c = b
-    b = a
-    a = a + c
-
-