Flowdock
puts(exps) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/irb/xmp.rb, line 35
  def puts(exps)
    @io.puts exps

    if @irb.context.ignore_sigint
      begin
        trap_proc_b = trap("SIGINT"){@irb.signal_handle}
        catch(:IRB_EXIT) do
          @irb.eval_input
        end
      ensure
        trap("SIGINT", trap_proc_b)
      end
    else
      catch(:IRB_EXIT) do
        @irb.eval_input
      end
    end
  end
Register or log in to add new notes.