cur is now a pkg and a #lang
These features are currently undocumented.
This commit is contained in:
parent
34dd749be0
commit
740aaee756
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
*~
|
||||||
|
\#*
|
||||||
|
.\#*
|
||||||
|
.DS_Store
|
||||||
|
compiled
|
2
cur.rkt
2
cur.rkt
|
@ -18,9 +18,11 @@
|
||||||
|
|
||||||
(require
|
(require
|
||||||
(rename-in "curnel/redex-lang.rkt" [provide real-provide])
|
(rename-in "curnel/redex-lang.rkt" [provide real-provide])
|
||||||
|
(only-in racket/base eof)
|
||||||
(for-syntax 'extra)
|
(for-syntax 'extra)
|
||||||
'extra)
|
'extra)
|
||||||
(provide
|
(provide
|
||||||
|
eof
|
||||||
(rename-out [real-provide provide])
|
(rename-out [real-provide provide])
|
||||||
(for-syntax (all-from-out 'extra))
|
(for-syntax (all-from-out 'extra))
|
||||||
(all-from-out
|
(all-from-out
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
#lang s-exp "../cur.rkt"
|
#lang racket/base
|
||||||
|
;; #lang s-exp "../cur.rkt"
|
||||||
|
|
||||||
|
(error "Known bug: examples.rkt way out of date")
|
||||||
|
#| TODO NB XXX This file is woefully out of date
|
||||||
|
|
||||||
;; Use racket libraries over your dependently typed code!?!?
|
;; Use racket libraries over your dependently typed code!?!?
|
||||||
;; TODO: actually, I'm not sure this should work quite as well as it
|
;; TODO: actually, I'm not sure this should work quite as well as it
|
||||||
|
@ -448,3 +452,4 @@
|
||||||
(has-type g e2 t1)
|
(has-type g e2 t1)
|
||||||
---------------------- T-App
|
---------------------- T-App
|
||||||
(has-type g (app e1 e2) t2)])
|
(has-type g (app e1 e2) t2)])
|
||||||
|
|#
|
||||||
|
|
8
info.rkt
Normal file
8
info.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang info
|
||||||
|
(define collection "cur")
|
||||||
|
(define deps '("base" "rackunit-lib"))
|
||||||
|
(define build-deps '("scribble-lib" "racket-doc"))
|
||||||
|
(define scribblings '(("scribblings/cur.scrbl" ())))
|
||||||
|
(define pkg-desc "Dependent types with parenthesis and meta-programming.")
|
||||||
|
(define version "0.1")
|
||||||
|
(define pkg-authors '(wilbowma))
|
2
lang/reader.rkt
Normal file
2
lang/reader.rkt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#lang s-exp syntax/module-reader
|
||||||
|
cur/cur
|
10
scribblings/cur.scrbl
Normal file
10
scribblings/cur.scrbl
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#lang scribble/manual
|
||||||
|
@require[@for-label[cur
|
||||||
|
racket/base]]
|
||||||
|
|
||||||
|
@title{cur}
|
||||||
|
@author{wilbowma (William J. Bowman <wjb@"@"williamjbowman.com>)}
|
||||||
|
|
||||||
|
@defmodule[cur]
|
||||||
|
|
||||||
|
Package Description Here
|
Loading…
Reference in New Issue
Block a user