# $Id$
require 'ripper/filter'
class CommentStripper < Ripper::Filter
def CommentStripper.strip(src)
new(src).parse(nil)
end
def on_default(event, token, data)
print token
def on_comment(token, data)
puts
CommentStripper.strip(ARGF)