cur is now a pkg and a #lang

These features are currently undocumented.
This commit is contained in:
William J. Bowman 2015-09-16 12:25:22 -04:00
parent 34dd749be0
commit 740aaee756
No known key found for this signature in database
GPG Key ID: DDD48D26958F0D1A
6 changed files with 33 additions and 1 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
*~
\#*
.\#*
.DS_Store
compiled

View File

@ -18,9 +18,11 @@
(require
(rename-in "curnel/redex-lang.rkt" [provide real-provide])
(only-in racket/base eof)
(for-syntax 'extra)
'extra)
(provide
eof
(rename-out [real-provide provide])
(for-syntax (all-from-out 'extra))
(all-from-out

View File

@ -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!?!?
;; TODO: actually, I'm not sure this should work quite as well as it
@ -448,3 +452,4 @@
(has-type g e2 t1)
---------------------- T-App
(has-type g (app e1 e2) t2)])
|#

8
info.rkt Normal file
View 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
View File

@ -0,0 +1,2 @@
#lang s-exp syntax/module-reader
cur/cur

10
scribblings/cur.scrbl Normal file
View 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