remove mrblib/print.rb that only raise NotImplementedError; ref #2354

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-06-05 22:47:40 +09:00
parent 799c9b30f6
commit cc28f868f1
-18
View File
@@ -1,18 +0,0 @@
##
# Kernel
#
# ISO 15.3.1
module Kernel
def print(*a)
raise NotImplementedError.new('print not available')
end
def puts(*a)
raise NotImplementedError.new('puts not available')
end
def p(*a)
raise NotImplementedError.new('p not available')
end
def printf(*args)
raise NotImplementedError.new('printf not available')
end
end