summaryrefslogtreecommitdiffhomepage
path: root/mrblib
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-06-05 22:47:40 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-06-05 22:47:40 +0900
commitcc28f868f157022a6c62129bf938a779a45f39cd (patch)
tree8264dc1fc9d728753fce82cf93a9936c4b9e47e3 /mrblib
parent799c9b30f60a0fd5cc3a04f4121cee94b5d7a192 (diff)
downloadmruby-cc28f868f157022a6c62129bf938a779a45f39cd.tar.gz
mruby-cc28f868f157022a6c62129bf938a779a45f39cd.zip
remove mrblib/print.rb that only raise NotImplementedError; ref #2354
Diffstat (limited to 'mrblib')
-rw-r--r--mrblib/print.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/mrblib/print.rb b/mrblib/print.rb
deleted file mode 100644
index 1ae3ae84b..000000000
--- a/mrblib/print.rb
+++ /dev/null
@@ -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