13 lines
332 B
Ruby
13 lines
332 B
Ruby
require "opal"
|
|
|
|
# Uncomment the following to print out you're hello-world with Opal:
|
|
#
|
|
# puts "hello world!"
|
|
#
|
|
# The following will append a hello-world to your <body> element:
|
|
#
|
|
# require "native"
|
|
# $$[:document].addEventListener :DOMContentLoaded do
|
|
# $$[:document][:body][:innerHTML] += '<h2>Hello World!</h2>'
|
|
# end
|