# File lib/net/yail/output_api.rb, line 277
  def kick(nick, channel, comment = nil)
    nick = nick.dup
    channel = channel.dup
    comment = comment.dup

    handle(:outgoing_kick, nick, channel, comment)
    output = "KICK #{channel} #{nick}"
    output += " :#{comment}" unless comment.to_s.empty?
    raw output
  end