racket/pkgs/racket-doc/scribblings/guide/store.rkt
Matthew Flatt 2d4f3e2ac9 remove the "racket-pkgs" directory layer
The layer is now redundant, since everything left in "pkgs" is in the
"racket-pkgs" category.
2014-12-08 05:22:59 -07:00

9 lines
168 B
Racket

#lang reader "dollar-racket.rkt"
(provide cost)
;; Cost of `n' $1 rackets with 7% sales
;; tax and shipping-and-handling fee `h':
(define (cost n h)
$n*107/100+h$)