@@ -11,7 +11,7 @@ Each directory under `examples/` is treated as a small DUNE module:
## 1. Minimal C++ program
Example source (`examples/01_grid_creation/grid_creation.cc`):
Example source ([`examples/01_grid_creation/grid_creation.cc`](https://gitlab.com/spraetor/dune-tutorial/-/blob/main/examples/01_grid_creation/grid_creation.cc)):
```cpp
#include<array>
@@ -36,7 +36,7 @@ int main()
The module file declares dependencies between modules.
Example (`examples/01_grid_creation/dune.module`):
Example ([`examples/01_grid_creation/dune.module`](https://gitlab.com/spraetor/dune-tutorial/-/blob/main/examples/01_grid_creation/dune.module)):
```text
Module: dune-tutorial-example-01
@@ -51,7 +51,7 @@ There are additional `dune.module` fields, but we ignore them here and return to
Use regular CMake package discovery and imported DUNE targets.
Example (`examples/01_grid_creation/CMakeLists.txt`):
Example ([`examples/01_grid_creation/CMakeLists.txt`](https://gitlab.com/spraetor/dune-tutorial/-/blob/main/examples/01_grid_creation/CMakeLists.txt)):