File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Reading a JSON file
12
12
---------------
13
13
14
14
Reading a JSON file and getting data from it is fairly straightforward. Here is an example. See the json_example.f90 file for more examples.
15
-
15
+ ``` fortran
16
16
program example1
17
17
18
18
use json_module
@@ -40,13 +40,13 @@ Reading a JSON file and getting data from it is fairly straightforward. Here is
40
40
call json%destroy()
41
41
42
42
end program example1
43
-
43
+ ```
44
44
45
45
Writing a JSON file
46
46
---------------
47
47
48
48
Writing a json file is slightly more complicated and involves the use of pointers. See the json_example.f90 file for more examples.
49
-
49
+ ``` fortran
50
50
program example2
51
51
52
52
use json_module
@@ -87,7 +87,7 @@ Writing a json file is slightly more complicated and involves the use of pointer
87
87
call json_destroy(p)
88
88
89
89
end program example2
90
-
90
+ ```
91
91
Other Comments
92
92
---------------
93
93
You can’t perform that action at this time.
0 commit comments