https://github.com/samth/tr-tutorial
Typed Racket tutorial at ELS 2013 & RacketCon 2012
https://github.com/samth/tr-tutorial
Last synced: 6 months ago
JSON representation
Typed Racket tutorial at ELS 2013 & RacketCon 2012
- Host: GitHub
- URL: https://github.com/samth/tr-tutorial
- Owner: samth
- Created: 2012-10-07T13:38:22.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2019-05-16T18:45:29.000Z (about 7 years ago)
- Last Synced: 2025-10-10T13:38:25.806Z (8 months ago)
- Language: Racket
- Homepage:
- Size: 15.6 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RacketCon Tutorial on Typed Racket
## Typed Racket Basics
### Your first Typed Racket program
```
#lang typed/racket
(module+ main (displayln "Hello World"))
```
### Intro
### Next
### Union
### Polymorphism
### Advanced
## Porting small programs
Take the programs on the Racket website (collected in the `website`
directory) and port them to Typed Racket.
## A Bigger Step
Working through the *More: Systems programming in Racket* tutorial