4 lines
66 B
FSharp
4 lines
66 B
FSharp
let c = 'A'
|
|
let n = 65
|
|
printfn "%d" (int c)
|
|
printfn "%c" (char n)
|