Hmm, maybe you'd find “parameters” (not to be confused with function parameters) useful for your goals.
#lang racket (define current_meaning (make-parameter "some string")) (define (display_current_meaning) (display (current_meaning))) (display_current_meaning) (let () (parameterize ([current_meaning "a different string"]) (display_current_meaning))) (display_current_meaning) -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/47a28e82-eb5f-418d-8f45-71876c561719%40googlegroups.com.