module Kernel

Public Instance Methods

qq(*args) click to toggle source

Pretty print statements with QQ.

@example qq('hello world')

# File lib/qq.rb, line 93
def qq *args
  QQ.new(caller_locations(1, 1).first, args)
end