typed-racket icon indicating copy to clipboard operation
typed-racket copied to clipboard

Typed Racket

Results 184 typed-racket issues
Sort by recently updated
recently updated
newest added

**What version of Racket are you using?** 8.18 [cs] **What program did you run?** ```racket #lang typed/racket/shallow (module m typed/racket (provide (all-defined-out)) (define-syntax-rule (1+ n) (add1 n))) (require 'm) (displayln...

**What version of Racket are you using?** 8.18 [cs] **What program did you run?** ```racket #lang typed/racket (module m typed/racket/shallow (module n racket (provide (all-defined-out)) (struct v () #:property prop:sequence...

Resyntax fixed 33 issues in 20 files. * Fixed 9 occurrences of `define-lambda-to-define` * Fixed 5 occurrences of `let-to-define` * Fixed 3 occurrences of `read-line-any` * Fixed 2 occurrences of...

This is a (very) work-in-progress pull request to use the new `define-deprecated-alias` form to define the various aliases listed in [Legacy Forms](https://docs.racket-lang.org/ts-reference/Legacy_Forms.html). This will allow Resyntax to automatically migrate users...

enhancement