Files
server/usr/lib/ruby/3.2.0/psych/y.rb
2026-01-07 20:52:11 +01:00

11 lines
190 B
Ruby

# frozen_string_literal: true
module Kernel
###
# An alias for Psych.dump_stream meant to be used with IRB.
def y *objects
puts Psych.dump_stream(*objects)
end
private :y
end