Guest User

Untitled

a guest
Jun 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. require 'hotcocoa/graphics'
  2. include HotCocoa
  3. include Graphics
  4.  
  5. NSApplicationMain(0, nil)
  6.  
  7. application do |app|
  8. canvas = Canvas.for_rendering(:size => [400,400])
  9. canvas.background(Color.white)
  10. win = window :size => [100,50]
  11. b = button :title => 'Hello'
  12. b.on_action { puts 'World!' }
  13. win << b
  14. puts "HERE"
  15. end
Add Comment
Please, Sign In to add comment