|
|
|
|
|
by elibarzilay
3333 days ago
|
|
You could have used the scribble reader (the @-expression syntax, not to be confused with the full documentation system). But you'd also then find that there is a more robust way to get what you implement with a simple definition: #lang at-exp racket
(require racket/date)
(define s string-append)
(displayln @s{Current date&time: @(date->string (current-date) #t)})
|
|
Anyway, thanks for reading!