# File lib/complex.rb, line 60
  def arg
    if self >= 0
      return 0
    else
      return Math::PI
    end
  end