Skip to content

Commit

Permalink
Add bash code highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
cibinjoseph committed Feb 23, 2021
1 parent 4d0a5a9 commit 6e8d4a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ford_input/Tutorials/tutorial0/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ end program matmul_test
```
</br>
Ensure the module `naturalfruit.f90` is available for use and available for linking. Our example program may then be compiled and executed using:
```
```Bash
$ gfortran -c naturalfruit.f90
$ gfortran matmul_test.f90 naturalfruit.o
$ ./a.out
Expand Down Expand Up @@ -122,4 +122,5 @@ end program matmul_test
We have now realized the bare minimum to perform unit testing with naturalFRUIT. </br>
This program may be easily extended to testing other data types like `real` and `real*8` too. </br>
However, for maintaining a testsuite with a large number of complex testcases, we cannot rely only on a simple testrunner program like the above. A better organization of things is essential. Continue to the next tutorial to find how this may be achieved.</br></br>

<center>[Next Tutorial](../tutorial1/index.html)</center>

0 comments on commit 6e8d4a1

Please sign in to comment.