From 3fb8ff0d1fbb633215ec01e5e533a813f0fffd20 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Sun, 7 Jan 2018 16:58:04 +0100 Subject: [PATCH] Add a link to the solution of the Caesar example --- basics/arrays.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/basics/arrays.md b/basics/arrays.md index 4e83d24..4936f86 100644 --- a/basics/arrays.md +++ b/basics/arrays.md @@ -71,6 +71,8 @@ which shifts the characters in the alphabet using a certain index. The to-be-encrypted text only contains characters in the range `a-z`, which should make things easier. +You can browse the solution [here](https://github.com/dlang-tour/core/issues/227). + ### In-depth - [Arrays in _Programming in D_](http://ddili.org/ders/d.en/arrays.html)