3 lines
108 B
Racket
3 lines
108 B
Racket
#lang racket
|
|
(string-join (string-split "Hello,How,Are,You,Today" ",") ".")
|
|
;; -> "Hello.How.Are.You.Today"
|