diff --git a/lesson#1/README.md b/lesson#1/README.md new file mode 100644 index 0000000..8e9eb8d --- /dev/null +++ b/lesson#1/README.md @@ -0,0 +1,34 @@ +# Let's learn Dlang Game Dev + +### Let's install: +- DMD compiler +- DUB package manager +- Sublime Text editor + +##### DMD a compiler for D programming language. It takes in the source code +and produces executables. + +To install DMD compiler: +1. Head over to the official website for + D programming language: www.dlang.org +2. Click on 'downloads' +3. Download DMD offcial installer +4. Lauch the installer, it will isntall DMD compiler automatically + +##### DUB is the official package manager for D programming langauge. +With the help of DUB you can build and run your programs. It is especially +useful when you need to include an external library. Just tell DUB +the name of the package/library, and DUB will fetch and build it for your +project. + +To install DUB package manager: +1. Head over to www.github.com/dlang/dub/releases +2. Choose you OS and download the official installer +3. Launch the installer, it will install DUB package manager automatically + +##### Sublime Text is an editor for our code. It's simple and easy to use. + +To install Sublime Text: +1. Head over to www.sublimetext.com +2. Click on download +3. Choose your OS and download the application \ No newline at end of file