a4701086创建于 2018年12月12日历史提交
object Main {
  def main(args: Array[String]): Unit = {
    def e: Unit = {print('e'); e}
    print('r')
    e
  }
}