class Opal::Context::Console

to allow simple debugging to the stdout.
Console class is used to mimic the console object in web browsers

def log(*str)

def log(*str)
  puts str.join("\n")
  nil
end