Method Ruby

log = Proc.new { |str| puts "[LOG] #{str}" }
log.call("A test log message.")
# [LOG] A test log message.