📜  在 Elxir 中使用 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:30.349000             🧑  作者: Mango

代码示例1
# When you use a module,
# you allow that module to inject any code in the current module,
# such as importing itself or other modules,
# defining new functions, 
# setting a module state, etc.

defmodule AssertionTest do
  use ExUnit.Case, async: true

  test "always pass" do
    assert true
  end
end