RosettaCodeData/Task/String-case/F-Sharp/string-case.fs

4 lines
68 B
Forth

let s = "alphaBETA"
let upper = s.ToUpper()
let lower = s.ToLower()