wren nest
Use caution when loading scripts written by others, wrenjs is capable of running ANY JavaScript code.
main
System.print("Hello, world!") class Wren { flyTo(city) { System.print("Flying to ", city) } } var adjectives = Fiber.new { ["small", "clean", "fast"].each {|word| Fiber.yield(word) } } while (!adjectives.isDone) System.print(adjectives.call())