Skip to content

Instantly share code, notes, and snippets.

@Akkiesoft
Created April 21, 2023 14:00
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 Akkiesoft/90b2cc9c45263db173cc5fc434ba06e6 to your computer and use it in GitHub Desktop.
Save Akkiesoft/90b2cc9c45263db173cc5fc434ba06e6 to your computer and use it in GitHub Desktop.
require 'gtk3'
window = Gtk::Window.new
input = Gtk::Entry.new()
window.add(input)
window.show_all
window.signal_connect("destroy") { Gtk.main_quit }
Gtk.main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment