Typed Racket
Go to file
Asumu Takikawa e031d6c47e Typecheck the top-level using trampolining macros
Instead of local-expanding the entire top-level forms at
once, wrap expressions in a top-level begin in trampolining
macro forms. This allows the typechecker to trampoline back
to the evaluator, which is necessary to declare/register
declarations made in a top-level begin.

The point of this change is to eliminate top-level hacks
and faciliate various macros that need to communicate using
multiple top-level forms.
2015-08-14 21:25:54 -04:00
source-syntax Remove extra directories. 2014-12-02 00:53:36 -05:00
typed-racket Remove extra directories. 2014-12-02 00:53:36 -05:00
typed-racket-compatibility Export let*-values from TR correctly 2015-08-12 12:16:05 -04:00
typed-racket-doc Use tc-expr for top-interaction functions instead 2015-08-14 21:25:54 -04:00
typed-racket-lib Typecheck the top-level using trampolining macros 2015-08-14 21:25:54 -04:00
typed-racket-more fix issue #166 2015-08-03 18:36:14 -05:00
typed-racket-test Use tc-expr for top-interaction functions instead 2015-08-14 21:25:54 -04:00
.gitignore Add standard .gitignore file. 2014-12-06 17:46:25 -05:00
.travis.yml Try running travis on docker. 2015-08-14 09:40:23 -04:00
README.md Fix Travis image URL in the README 2015-02-25 15:17:13 -05:00

Typed Racket

Build Status

Typed Racket is Racket's gradually-typed sister language which lets you add statically-checked type annotations to your programs. For more information, see the Typed Racket Guide.

Installation

Typed Racket is bundled in the default Racket distribution, which you can download from Racket's download page.

You can also manually install it from the main package catalog with the following command:

raco pkg install typed-racket

Documentation

The documentation is also bundled in your local copy of Typed Racket.


Copyright (c) 2010-2015 PLT Design Inc.

This package is distributed under the GNU Lesser General Public License (LGPL). This means that you can link this package into proprietary applications, provided you follow the rules stated in the LGPL. You can also modify this package; if you distribute a modified version, you must distribute it under the terms of the LGPL, which in particular means that you must release the source code for the modified software. See http://www.gnu.org/copyleft/lesser.html for more information.