finish lesson 04

This commit is contained in:
Chang CL
2025-09-03 21:06:46 +08:00
parent 4d82c3d2a2
commit f63288fd8f

View File

@@ -6,18 +6,18 @@ defmodule Atoms do
koan "Atoms are constants where their name is their own value" do
adam = :human
assert adam == ___
assert adam == :human
end
koan "It is surprising to find out that booleans are atoms" do
assert is_atom(true) == ___
assert is_boolean(false) == ___
assert true == ___
assert false == ___
assert is_atom(true) == true
assert is_boolean(false) == true
assert true == true
assert false == false
end
koan "Like booleans, the nil value is also an atom" do
assert is_atom(nil) == ___
assert nil == ___
assert is_atom(nil) == true
assert nil == nil
end
end