Skip to content

Instantly share code, notes, and snippets.

@narodnik
Created October 15, 2020 20:39
Show Gist options
  • Save narodnik/0eb84bde1764c77438078aa0091d7ba3 to your computer and use it in GitHub Desktop.
Save narodnik/0eb84bde1764c77438078aa0091d7ba3 to your computer and use it in GitHub Desktop.
#lang racket
(define (create_local ident)
(printf "value: ~a\n" ident)
110
)
(define (foo) (
(let ([local (create_local 'x)])
(displayln "hihi")
)
))
(foo)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment