Created
October 15, 2020 20:39
-
-
Save narodnik/0eb84bde1764c77438078aa0091d7ba3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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