1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-13 12:35:48 +03:00
mobile-nixos/boot/lib/00-monkey_patches/pp.rb

8 lines
95 B
Ruby
Raw Normal View History

2019-12-22 07:12:39 +03:00
module Kernel
def pp(*args)
args.each do |arg|
puts(arg.inspect)
end
end
end