Create a new window
#!/usr/bin/env ruby require 'tk' hello = TkRoot.new TkLabel.new( hello ) do text "\n Hello, myValue! \n" pack end Tk.mainloop