Guest User

CoffeeScript --> JS --> Rhino

a guest
Oct 10th, 2011
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. importPackage java.awt
  2.  
  3. f = new Frame "Не пиши на Java"
  4. b = new Button "Во имя добра"
  5. b.addActionListener java.awt.event.ActionListener new
  6.   class
  7.     actionPerformed: (e) ->
  8.       java.lang.System.exit 0
  9. f.setLayout new FlowLayout()
  10. f.add b
  11. f.pack()
  12. f.setVisible true
  13.  
Advertisement
Add Comment
Please, Sign In to add comment