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