mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-24 08:23:33 +03:00
8 lines
95 B
Ruby
8 lines
95 B
Ruby
|
module Kernel
|
||
|
def pp(*args)
|
||
|
args.each do |arg|
|
||
|
puts(arg.inspect)
|
||
|
end
|
||
|
end
|
||
|
end
|