Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 782 Bytes

faq.md

File metadata and controls

25 lines (18 loc) · 782 Bytes

[Cheat Sheet] [FAQ] [API Reference] [Complete Examples] [Community Showcase]

FAQ

Where my puts output goes?

By default, puts output goes to STDOUT which is a JavaScript console.log function. You can override it by setting $stdout to a Ruby object which has write method.

$stdout = Object.new.tap do |obj|
  def obj.write(str)
    JS.global[:document].write(str)
  end
end

puts "Hello, world!" # => Prints "Hello, world!" to the HTML document

How to run WebAssembly in Ruby

Use wasmtime Ruby gem.