Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created July 31, 2018 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save havenwood/efc6e04343fb7abeb55d3e0ef66af881 to your computer and use it in GitHub Desktop.
Save havenwood/efc6e04343fb7abeb55d3e0ef66af881 to your computer and use it in GitHub Desktop.
A Tk Hello World in Ruby
require 'tk'
root = TkRoot.new do
title "today's menu"
minsize 200, 100
end
TKLabel.new root do
text 'Chunky Bacon!'
foreground 'navy'
pack do
side 'left'
end
end
Tk.mainloop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment