
- Run mix credo --all to identify possible code optimizations - Resolve most of the errors generated by credo such as: - Numbers larger than 9999 should be written with underscores: 58_127 - Modules should have a @moduledoc tag - Comparison will always return true
14 lines
183 B
Elixir
14 lines
183 B
Elixir
defmodule SampleKoan do
|
|
@moduledoc false
|
|
use Koans
|
|
|
|
@intro """
|
|
There is something
|
|
"""
|
|
|
|
koan "Thinking more than once" do
|
|
assert 3 == ___
|
|
assert 4 == ___
|
|
end
|
|
end
|