RosettaCodeData/Task/Character-codes/F-Sharp/character-codes.fs
2023-07-01 13:44:08 -04:00

4 lines
66 B
FSharp

let c = 'A'
let n = 65
printfn "%d" (int c)
printfn "%c" (char n)