Ryan Bignell
Ryan Bignell
### Description When I use stdlib_io_npy via FPM, i.e. with ``` [dependencies] stdlib = { git="https://github.com/fortran-lang/stdlib", branch="stdlib-fpm" } ``` the FPM defaults to building with maximum rank of 4 for...
Now allows `read_csv_file` to accept a single character delimiter analogous to `initialize` I.e. ``` type(csv_file) :: f call f%read('test.csv',header_row=1,status_ok=status_ok, delimiter='A') ``` The default is of course still ',' as it...
### Problem Description I was having some issues with do-concurrent giving wrong results on the host with some more complicated code. I reduced it down to the below which just...