Two more #lang racket' -> #lang racket/base'.

This commit is contained in:
Eli Barzilay 2012-11-07 11:34:33 -05:00
parent 672910f27b
commit 1e55f71f8a
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#lang racket
#lang racket/base
;; ---------------------------------------------------------------------------------------------------
;; provides constants and functions for specifying the shape of clauses in big-bang and universe
@ -6,7 +6,7 @@
(provide nat> nat? proc> bool> num> ip> string> symbol> string-or-symbol> any> K False True)
(require htdp/error "check-aux.rkt")
(define (K w . r) w)
(define (False w) #f)
(define (True w) #t)

View File

@ -1,6 +1,7 @@
#lang racket
#lang racket/base
(require teachpack/2htdp/scribblings/img-eval
racket/pretty
racket/sandbox
mzlib/pconvert
file/convertible