Moved all examples to own sub-directory

This commit is contained in:
William J. Bowman 2015-09-15 18:58:32 -04:00
parent 23c1b56065
commit 2796cba6fb
No known key found for this signature in database
GPG Key ID: DDD48D26958F0D1A
3 changed files with 12 additions and 12 deletions

View File

@ -1,11 +1,11 @@
#lang s-exp "cur.rkt"
#lang s-exp "../cur.rkt"
;; Use racket libraries over your dependently typed code!?!?
;; TODO: actually, I'm not sure this should work quite as well as it
;; seems to with check-equal?
(require rackunit)
(require
(only-in "cur.rkt"
(only-in "../cur.rkt"
[#%app real-app]
[define real-define]))

View File

@ -1,7 +1,7 @@
#lang s-exp "cur.rkt"
#lang s-exp "../cur.rkt"
(require
"stdlib/sugar.rkt"
"stdlib/prop.rkt"
"../stdlib/sugar.rkt"
"../stdlib/prop.rkt"
racket/trace
(for-syntax racket/syntax))

View File

@ -1,11 +1,11 @@
#lang s-exp "cur.rkt"
#lang s-exp "../cur.rkt"
(require
"stdlib/nat.rkt"
"stdlib/sugar.rkt"
"oll.rkt"
"stdlib/maybe.rkt"
"stdlib/bool.rkt"
"stdlib/prop.rkt")
"../stdlib/nat.rkt"
"../stdlib/sugar.rkt"
"../oll.rkt"
"../stdlib/maybe.rkt"
"../stdlib/bool.rkt"
"../stdlib/prop.rkt")
(define-language stlc
#:vars (x)