diff options
| author | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-01-21 19:55:22 +0100 |
|---|---|---|
| committer | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-01-21 19:55:22 +0100 |
| commit | d261da01634c5fd62cd68f8c9c39a89422bdd398 (patch) | |
| tree | 94757e37b3e5ac747276219a407298d032aa6688 /src/lib.rs | |
| parent | dc0014f9007fa96fb37f5b03779fc003b0ce54ad (diff) | |
| download | sylt-d261da01634c5fd62cd68f8c9c39a89422bdd398.tar.gz | |
Rc<RefCell<Block>> and closing upvalues
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"); |
