whalesong/whalesong/tests/more-tests/simple-apply.rkt
2013-02-21 17:42:12 -07:00

61 lines
998 B
Racket

#lang whalesong/base
(apply + 2 3 4 5 '())
(apply + 2 3 4 '(5))
(apply + 2 3 '(4 5))
(apply + 2 '(3 4 5))
(apply + '(2 3 4 5))
(apply * 2 3 4 5 '())
(apply * 2 3 4 '(5))
(apply * 2 3 '(4 5))
(apply * 2 '(3 4 5))
(apply * '(2 3 4 5))
(apply (lambda args args) 2 3 4 5 '())
(apply (lambda args args) 2 3 4 '(5))
(apply (lambda args args) 2 3 '(4 5))
(apply (lambda args args) 2 '(3 4 5))
(apply (lambda args args) '(2 3 4 5))
(apply (lambda (a b c) (+ a (* b c))) 2 3 '(4))
(add1 (apply (lambda (a b c) (+ a (* b c))) 2 3 '(4)))
(= (apply (lambda (a b c) (+ a (* b c))) 2 3 '(4))
0)
(apply list 3 4 '(5))
(define (square x)
(* x x))
(apply square '(7))
"squaring"
(define (square2 x)
(apply * (list x x)))
(apply square2 '(7))
(apply square2 8 '())
"now factorial"
(define (f x)
(cond
[(apply = `(,x 0))
1]
[else
(apply * `(,x ,(apply f (apply sub1 (apply list x '())) '())))]))
(f 0)
(apply f 1 '())
(f 2)
(apply f '(3))
(f 4)
(f 5)
(+ (apply f 4 '()) (f 5))