10 lines
159 B
Racket
10 lines
159 B
Racket
|
|
#lang racket
|
||
|
|
(define example "alphaBETA")
|
||
|
|
|
||
|
|
(string-upcase example)
|
||
|
|
;"ALPHABETA"
|
||
|
|
(string-downcase example)
|
||
|
|
;"alphabeta"
|
||
|
|
(string-titlecase example)
|
||
|
|
;"Alphabeta"
|