一天熟悉Elixir,练习Koans

最近在exercism.io练习,那个难度稍微大一些,大概要一个月吧,适合于作第二阶段提升的练习。git

今天发现一个新的不错的初学练习方式,一天就能熟悉Elixir的一些基础,一共18关。github

第一关

好比,第一个简单地判断相等:app

defmodule Equalities do
  use Koans

  @intro  """
  Welcome to the Elixir koans.
  Let these be your first humble steps towards learning a new language.

  The path laid in front of you is one of many.
  """

  # Replace ___ with the answer to make the koan pass.
  koan "We shall contemplate truth by testing reality, via equality" do
    assert true == ___
  end

  koan "Not something is the opposite of it" do
    assert !true == ___
  end

  koan "To understand reality, we must compare our expectations against reality" do
    assert 2 == 1 + ___
  end

  koan "Some things may appear different, but be the same" do
    assert 1 == 2 / ___
  end

  koan "Unless they actually are different" do
    assert 3.2 != ___
  end

  koan "Some may be looking for bigger things" do
    assert ___ > 3
  end

  koan "Others are happy with less" do
    assert ___ < 3
  end
end

全部的题目

01_equalities.ex       07_lists.ex            13_functions.ex
02_strings.ex          08_keyword_lists.ex    14_enums.ex
03_sigils.ex           09_maps.ex             15_processes.ex
04_numbers.ex          10_map_sets.ex         16_tasks.ex
05_atoms.ex            11_structs.ex          17_agents.ex
06_tuples.ex           12_pattern_matching.ex 18_protocols.ex

后面4个稍微陌生和难一点。less

运行方式

mix deps.get

mix meditate

不断练习

能够反复练习直到这些成为直觉。koa

项目学习

这个Koans自己是个不错的学习项目,能够经过它学习到一个完整的项目是如何建构的。学习