diff --git a/hands-on_dlang.md b/hands-on_dlang.md index 218bc33..d2a7c2b 100644 --- a/hands-on_dlang.md +++ b/hands-on_dlang.md @@ -1349,7 +1349,11 @@ unittest { To execute the unittests, just compile with the `-unittest` flag. When running the program, the unittests get run before the main function is executed. When -using DUB, just run `dub test`. +using DUB, just run + +```bash +dub test +``` #### Code coverage