13 lines
150 B
Racket
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)))) |