
- 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
11 lines
128 B
Elixir
11 lines
128 B
Elixir
defmodule PassingKoan do
|
|
@moduledoc false
|
|
use Koans
|
|
|
|
@intro "something"
|
|
|
|
koan "Hi there" do
|
|
assert 1 == 1
|
|
end
|
|
end
|