You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Trailing spaces at the end of lines removed
- Every file ends with exactly 1 new line character
- The code compiles using CMake and the build.sh script, and passes the tests
Currently, several ways are provided to build the jsonfortran library
35
-
(libjsonfortran).
35
+
(libjsonfortran).
36
36
37
37
* A build script, `build.sh` is provided in the project root directory. This script uses [FoBiS](https://github.com/szaghi/FoBiS) to build the json-fortran library and the example program. Edit the script to use either the [Intel Fortran Compiler](https://software.intel.com/en-us/fortran-compilers) or [Gfortran](https://gcc.gnu.org/wiki/GFortran). Note that version 1.2.5 of FoBiS (or later) is required.
38
38
@@ -72,7 +72,7 @@ Reading JSON from a file
72
72
73
73
Reading a JSON file and getting data from it is fairly
74
74
straightforward using the ```json_file``` class. Here is an example. See the json_example.f90 file
75
-
for more examples.
75
+
for more examples.
76
76
77
77
```fortran
78
78
program example1
@@ -107,7 +107,7 @@ for more examples.
107
107
Reading JSON from a string
108
108
---------------
109
109
JSON can also be read directly from a character string like so:
0 commit comments