RosettaCodeData/Task/Hello-world-Graphical/Ruby/hello-world-graphical-2.rb

5 lines
132 B
Ruby

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