Mega Code Archive

 
Categories / Ruby / Tk
 

Create the main or root window

require 'tk' root = TkRoot.new button = TkButton.new(root) {   text "Hello, World!"   command proc { puts "I said, Hello!" } } button.pack Tk.mainloop