class Pry::Command::ClearScreen
def process
def process if Pry::Helpers::Platform.windows? pry_instance.config.system.call(pry_instance.output, 'cls', pry_instance) else pry_instance.config.system.call(pry_instance.output, 'clear', pry_instance) end end