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