dac9641b创建于 2018年12月16日历史提交
defmodule Reee do

  def e do
    (IO.write "e"; e())
  end

  def reee do
    IO.write "r"
    e()
  end

end

Reee.reee()