whalesong/tests/more-tests/simple-functions.rkt
2011-08-30 02:10:03 -04:00

13 lines
150 B
Racket

#lang planet dyoo/whalesong/base
(provide (all-defined-out))
(define (f x)
(* x x))
(define (g x)
(+ x x))
(f 1)
(g 1)
(+ (f 2) (f (g (g 2))))