From 6d2a45535938f8bd039d850f94d1e5216baf4527 Mon Sep 17 00:00:00 2001 From: HuskyNator Date: Wed, 1 Nov 2023 15:55:02 +0100 Subject: [PATCH] Add References to book & specifications --- basics/imports-and-modules.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/basics/imports-and-modules.md b/basics/imports-and-modules.md index 94717b5..e341575 100644 --- a/basics/imports-and-modules.md +++ b/basics/imports-and-modules.md @@ -47,6 +47,11 @@ The D compiler would then try to load `my/cat/package.d` instead of `my/cat.d`. The convention (but not a hard rule) for `package.d` files is to publicly import all other modules in the same folder. +### In-Depth + +- [Modules and Libraries in _Programming in D_](http://ddili.org/ders/d.en/modules.html) +- [Modules specification](https://dlang.org/spec/module.html) + ## {SourceCode} ```d