adding a simple looping example
This commit is contained in:
parent
1e152258f7
commit
32ff42bebe
1
tests/more-tests/simple-loop.expected
Normal file
1
tests/more-tests/simple-loop.expected
Normal file
|
@ -0,0 +1 @@
|
||||||
|
4950
|
8
tests/more-tests/simple-loop.rkt
Normal file
8
tests/more-tests/simple-loop.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang planet dyoo/whalesong/base
|
||||||
|
|
||||||
|
(let myloop ([i 0] [acc 0])
|
||||||
|
(cond
|
||||||
|
[(< i 100)
|
||||||
|
(myloop (add1 i) (+ acc i))]
|
||||||
|
[else
|
||||||
|
acc]))
|
|
@ -7,6 +7,7 @@
|
||||||
;; type replaced with .expected.
|
;; type replaced with .expected.
|
||||||
|
|
||||||
(test "more-tests/simple.rkt")
|
(test "more-tests/simple.rkt")
|
||||||
|
(test "more-tests/simple-loop.rkt")
|
||||||
(test "more-tests/booleans.rkt")
|
(test "more-tests/booleans.rkt")
|
||||||
(test "more-tests/module-scoping.rkt")
|
(test "more-tests/module-scoping.rkt")
|
||||||
(test "more-tests/checking.rkt")
|
(test "more-tests/checking.rkt")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user