RosettaCodeData/Task/String-append/Racket/string-append.rkt
2023-07-01 13:44:08 -04:00

12 lines
350 B
Racket

;there is no built-in way to set! append in racket
(define mystr "foo")
(set! mystr (string-append mystr " bar"))
(displayln mystr)
;but you can create a quick macro to solve that problem
(define-syntax-rule (set-append! str value)
(set! str (string-append str value)))
(define mymacrostr "foo")
(set-append! mymacrostr " bar")
(displayln mystr)