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 1
1
Fortran CSV Module
2
2
https://github.com/jacobwilliams/fortran-csv-module
3
3
4
- Copyright (c) 2017-2021 , Jacob Williams
4
+ Copyright (c) 2017-2022 , Jacob Williams
5
5
All rights reserved.
6
6
7
7
Redistribution 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
56
56
type(csv_file) :: f
57
57
logical :: status_ok
58
58
59
+ ! set optional inputs:
60
+ call f%initialize(verbose = .true.)
61
+
59
62
! open the file
60
63
call f%open('test.csv',n_cols=4,status_ok=status_ok)
61
64
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name = "fortran-csv-module"
2
2
version = " 1.3.1"
3
3
author = " Jacob Williams"
4
4
maintainer = " Jacob Williams"
5
- copyright = " Copyright (c) 2017-2021 , Jacob Williams"
5
+ copyright = " Copyright (c) 2017-2022 , Jacob Williams"
6
6
license = " BSD-3"
7
7
description = " Read and Write CSV Files Using Modern Fortran"
8
8
homepage = " https://github.com/jacobwilliams/fortran-csv-module"
You can’t perform that action at this time.
0 commit comments