File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed
Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11Fortran CSV Module
22https://github.com/jacobwilliams/fortran-csv-module
33
4- Copyright (c) 2017-2021 , Jacob Williams
4+ Copyright (c) 2017-2022 , Jacob Williams
55All rights reserved.
66
77Redistribution and use in source and binary forms, with or without modification,
Original file line number Diff line number Diff line change @@ -56,6 +56,9 @@ implicit none
5656type(csv_file) :: f
5757logical :: status_ok
5858
59+ ! set optional inputs:
60+ call f%initialize(verbose = .true.)
61+
5962! open the file
6063call f%open('test.csv',n_cols=4,status_ok=status_ok)
6164
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name = "fortran-csv-module"
22version = " 1.3.1"
33author = " Jacob Williams"
44maintainer = " Jacob Williams"
5- copyright = " Copyright (c) 2017-2021 , Jacob Williams"
5+ copyright = " Copyright (c) 2017-2022 , Jacob Williams"
66license = " BSD-3"
77description = " Read and Write CSV Files Using Modern Fortran"
88homepage = " https://github.com/jacobwilliams/fortran-csv-module"
You can’t perform that action at this time.
0 commit comments