repo.or.cz
/
ruby-80x24.org.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
* 2022-01-18 [ci skip]
[ruby-80x24.org.git]
/
prelude.rb
blob
b1e477a3ea5c1ec44c44d485d40c0540b15e0076
1
class Binding
2
# :nodoc:
3
def irb
4
require 'irb'
5
irb
6
end
7
8
# suppress redefinition warning
9
alias irb irb # :nodoc:
10
end
11
12
module Kernel
13
def pp(*objs)
14
require 'pp'
15
pp(*objs)
16
end
17
18
# suppress redefinition warning
19
alias pp pp # :nodoc:
20
21
private :pp
22
end