Skip to content

Commit 9a5da3d

Browse files
committed
Merge pull request #1 from zbeekman/master
Added Fortran syntax highlighting to the README.md
2 parents 78a8fec + 5cc9692 commit 9a5da3d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Reading a JSON file
1212
---------------
1313

1414
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
1616
program example1
1717
1818
use json_module
@@ -40,13 +40,13 @@ Reading a JSON file and getting data from it is fairly straightforward. Here is
4040
call json%destroy()
4141
4242
end program example1
43-
43+
```
4444

4545
Writing a JSON file
4646
---------------
4747

4848
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
5050
program example2
5151
5252
use json_module
@@ -87,7 +87,7 @@ Writing a json file is slightly more complicated and involves the use of pointer
8787
call json_destroy(p)
8888
8989
end program example2
90-
90+
```
9191
Other Comments
9292
---------------
9393

0 commit comments

Comments
 (0)