This line of code ``` print'(a)', starts_with("pattern", "pat") ! T ``` in [`stdlib/example/strings/example_starts_with.f90`](https://github.com/fortran-lang/stdlib/blob/19f84ce94a72ba2c83a92bedcb3c790ecc8bf088/example/strings/example_starts_with.f90#L4) prints binary because of the `a` format. It's not a problem per se, but just checking if it's intentional. ``` % gfortran example_starts_with.f90 % a.out |& cat -v ^A^@^@^@ ^@^@^@^@ % ```