Move sigils to later in the lessons

While doing this, I also discovered that
there is also a reference to lists in numbers, but
that might a bit easier for someone to grasp, given
the hint that the koan gives, and the output they
see when they run it.
This commit is contained in:
Tim Jarratt
2017-04-25 22:34:55 +02:00
parent 4de3a5f3d2
commit 00eb17014a
10 changed files with 1 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ defmodule Strings do
assert "hello world" == ___ <> "world" assert "hello world" == ___ <> "world"
end end
koan "Or pulled apart when needed" do koan "Or pulled apart into a list when needed" do
assert ["hello", "world"] == String.split(___, " ") assert ["hello", "world"] == String.split(___, " ")
end end