diff options
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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"); |
