Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save LeifAndersen/ebe33eb048eafc6e95919e7abfb03aeb to your computer and use it in GitHub Desktop.

Select an option

Save LeifAndersen/ebe33eb048eafc6e95919e7abfb03aeb to your computer and use it in GitHub Desktop.
Any oddness
#lang scratch
(module untyped racket
(provide u)
(define (u . x)
x))
(module typed typed/racket
(require/typed (submod ".." untyped)
[u Any])
(provide u))
(require 'typed)
(u #t 5 "hello" 'world)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment