We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a0b93 commit 7fe8773Copy full SHA for 7fe8773
README.md
@@ -55,7 +55,7 @@ target_link_libraries ( json_example jsonfortran-static )
55
# target_link_libraries ( json_example jsonfortran ) # instead
56
```
57
58
-Reading a JSON file
+Reading JSON from a file
59
---------------
60
61
Reading a JSON file and getting data from it is fairly
@@ -92,6 +92,13 @@ for more examples.
92
end program example1
93
94
95
+Reading JSON from a string
96
+---------------
97
+JSON can also be ready directly from a character string like so:
98
+```fortran
99
+ call json%load_from_string('{"name", "Leonidas"}')
100
+```
101
+
102
Modifying variables in a JSON file
103
104
0 commit comments