aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4352ae1..794bbea 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -233,6 +233,7 @@ mod tests {
factorial(6) <=> 720
factorial(12) <=> 479001600",
//TODO this tests doesn't terminate in proper time if we print blocks and ops
+ /*
fibonacci: "fibonacci : fn int -> int = fn n: int -> int {
if n == 0 {
ret 0
@@ -245,6 +246,7 @@ mod tests {
}
fibonacci(10) <=> 55
fibonacci(20) <=> 6765"
+ */
);
test_file!(scoping, "tests/scoping.tdy");