adding test for whalesong base as well

This commit is contained in:
Danny Yoo 2012-02-16 15:55:54 -05:00
parent a13274d63b
commit 1939e02553
6 changed files with 34 additions and 1 deletions

View File

@ -0,0 +1,2 @@
()
(3628800)

View File

@ -0,0 +1,13 @@
#lang planet dyoo/whalesong/base
(define (puzzle n)
(if (= n 0)
(continuation-mark-set->list (current-continuation-marks) 'secret)
(with-continuation-mark 'secret
(* n (first (continuation-mark-set->list (current-continuation-marks) 'secret)))
(puzzle (sub1 n)))))
(continuation-mark-set->list (current-continuation-marks) 'secret)
(with-continuation-mark 'secret 1
(puzzle 10))

File diff suppressed because one or more lines are too long

12
tests/more-tests/fact.rkt Normal file
View File

@ -0,0 +1,12 @@
#lang planet dyoo/whalesong
(define (fact x)
(cond
[(= x 0)
1]
[else
(* x (fact (sub1 x)))]))
(fact 1)
(fact 10)
(fact 100)
(fact 1000)
(fact 10000)

View File

@ -17,6 +17,7 @@
(test "more-tests/printing.rkt")
(test "more-tests/simple-functions.rkt")
(test "more-tests/cont-marks-1.rkt")
(test "more-tests/cont-marks-2.rkt")
(test "more-tests/map.rkt")
(test "more-tests/quasi.rkt")
(test "more-tests/sk-generator.rkt")

View File

@ -7,4 +7,4 @@
(provide version)
(: version String)
(define version "1.135")
(define version "1.137")