|
|
|
|
|
by devmunchies
562 days ago
|
|
> string_of_int, int_of_string That didn't bother me so much because i speak spanish and can read french. OCaml is of french origin. `string_of_int` is a bad english translation—should have been `string_from_int`. I like F# where I can use the `int` or `string` functions: let myString = "2024"
let myInt = int myString
let myStringAgain = string myInt
|
|