5 lines
132 B
Ruby
5 lines
132 B
Ruby
|
|
require 'tk'
|
||
|
|
root = TkRoot.new("title" => "User Output")
|
||
|
|
TkLabel.new(root, "text"=>"CHUNKY BACON!").pack("side"=>'top')
|
||
|
|
Tk.mainloop
|