Move methods of Kernel to kernel.rb from io.rb in mruby-io gem

This commit is contained in:
KOBAYASHI Shuji
2019-10-18 10:50:23 +09:00
parent e5f7b1d262
commit e5d767b149
2 changed files with 20 additions and 22 deletions
-22
View File
@@ -372,25 +372,3 @@ STDERR = IO.open(2, "w")
$stdin = STDIN
$stdout = STDOUT
$stderr = STDERR
module Kernel
def print(*args)
$stdout.print(*args)
end
def puts(*args)
$stdout.puts(*args)
end
def printf(*args)
$stdout.printf(*args)
end
def gets(*args)
$stdin.gets(*args)
end
def getc(*args)
$stdin.getc(*args)
end
end
+20
View File
@@ -12,4 +12,24 @@ module Kernel
File.open(file, *rest, &block)
end
end
def print(*args)
$stdout.print(*args)
end
def puts(*args)
$stdout.puts(*args)
end
def printf(*args)
$stdout.printf(*args)
end
def gets(*args)
$stdin.gets(*args)
end
def getc(*args)
$stdin.getc(*args)
end
end