document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Stampare un messaggio
  2. IO.print("Hello, world!")
  3.  
  4. Una Classe
  5. class Wren {
  6.   flyTo(city) {
  7.     IO.print("Flying to ", city)
  8.   }
  9. }
  10.  
  11. Una Variabile
  12. var adjectives = new Fiber {
  13.   ["small", "clean", "fast"].map {|word| Fiber.yield(word) }
  14. }
');