|
|
|
|
|
by magnusjonsson
4225 days ago
|
|
The ocaml standard library is minimal to a fault. It's just enough to implement the compiler itself. For higher level operations like starts_with, you use libraries. The Batteries library for example provides what you want: String.starts_with line "+++"
|
|