mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
94 lines
1.3 KiB
Ruby
94 lines
1.3 KiB
Ruby
##
|
|
# Kernel
|
|
#
|
|
# ISO 15.3.1
|
|
module Kernel
|
|
|
|
##
|
|
# Takes the given block, create a lambda
|
|
# out of it and +call+ it.
|
|
#
|
|
# ISO 15.3.1.2.6
|
|
def self.lambda(&block)
|
|
### *** TODO *** ###
|
|
block # dummy
|
|
end
|
|
|
|
##
|
|
# Calls the given block repetitively.
|
|
#
|
|
# ISO 15.3.1.2.8
|
|
def self.loop #(&block)
|
|
while(true)
|
|
yield
|
|
end
|
|
end
|
|
|
|
##
|
|
# Alias for +send+.
|
|
#
|
|
# ISO 15.3.1.3.4
|
|
def __send__(symbol, *args, &block)
|
|
### *** TODO *** ###
|
|
end
|
|
|
|
# 15.3.1.3.18
|
|
def instance_eval(string=nil, &block)
|
|
### *** TODO *** ###
|
|
end
|
|
|
|
##
|
|
# Alias for +Kernel.lambda+.
|
|
#
|
|
# ISO 15.3.1.3.27
|
|
def lambda(&block)
|
|
### *** TODO *** ###
|
|
block # dummy
|
|
end
|
|
|
|
##
|
|
# Alias for +Kernel.loop+.
|
|
#
|
|
# ISO 15.3.1.3.29
|
|
def loop #(&block)
|
|
while(true)
|
|
yield
|
|
end
|
|
end
|
|
|
|
##
|
|
# Invoke the method with the name +symbol+ on
|
|
# the receiver and pass +args+ and the given
|
|
# block.
|
|
#
|
|
# ISO 15.3.1.3.44
|
|
def send(symbol, *args, &block)
|
|
### *** TODO *** ###
|
|
end
|
|
|
|
##
|
|
# Print arguments
|
|
#
|
|
# ISO 15.3.1.2.10
|
|
def print(*args)
|
|
args.each do|x|
|
|
if x.nil?
|
|
__printstr__ "nil"
|
|
else
|
|
__printstr__ x.to_s
|
|
end
|
|
end
|
|
end
|
|
|
|
##
|
|
# Print arguments with newline
|
|
#
|
|
# ISO 15.3.1.2.11
|
|
def puts(*args)
|
|
args.each do|x|
|
|
__printstr__ x.to_s
|
|
__printstr__ "\n"
|
|
end
|
|
end
|
|
end
|