Skip to content

Instantly share code, notes, and snippets.

@pnwamk
Created January 3, 2015 18:35
Show Gist options
  • Save pnwamk/e5c5437ee5a686b662e4 to your computer and use it in GitHub Desktop.
Save pnwamk/e5c5437ee5a686b662e4 to your computer and use it in GitHub Desktop.
#lang typed/racket
(define (foo [x : Any]) : Number
(let ([x* x])
(begin
(set! x* "sneaky string")
(if (number? x)
x*
42))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment