module Kernel

def jj(*objs)

indentation and over many lines.
Outputs _objs_ to STDOUT as JSON strings in a pretty format, with
def jj(*objs)
  objs.each do |obj|
    puts JSON::pretty_generate(obj, :allow_nan => true, :max_nesting => false)
  end
  nil
end