Added redex-lib dep and install instructions

This commit is contained in:
William J. Bowman 2015-09-16 12:37:47 -04:00
parent 740aaee756
commit 1e3994d388
No known key found for this signature in database
GPG Key ID: DDD48D26958F0D1A
2 changed files with 25 additions and 4 deletions

View File

@ -15,9 +15,30 @@ cur (plural curs)
Getting started
===============
Requires redex-lib version 1.6 if you want answers in a reasonable amount
of time. Otherwise, the type-checker may require exponential time
or worse.
Install cur via `raco pkg install git://github.com/wilbowma/cur.git`.
Setup will likely result in a ton of errors that are safe to ignore.
Try it out. Save the following to `test.rkt`, then run `racket test.rkt`.
```racket
#lang cur
(require cur/stdlib/bool)
(if btrue
bfalse
btrue)
(data True : Type
(I : True))
I
```
There is currently little documentation, so your best bet is to look at
the source code in the `stdlib` for examples.
Going further
=============
Open up `examples/example.rkt` to see a tour of Cur's features.

View File

@ -1,6 +1,6 @@
#lang info
(define collection "cur")
(define deps '("base" "rackunit-lib"))
(define deps '("base" "rackunit-lib" ("redex-lib" #:version "1.6")))
(define build-deps '("scribble-lib" "racket-doc"))
(define scribblings '(("scribblings/cur.scrbl" ())))
(define pkg-desc "Dependent types with parenthesis and meta-programming.")