convert int in f# code example
Example: convert int number in f#
let intToString x = sprintf "x is %i" x // format int to string
let stringToInt x = System.Int32.Parse(x)
let intToString x = sprintf "x is %i" x // format int to string
let stringToInt x = System.Int32.Parse(x)