Codebase list ruby-fxruby / run/42285a56-c0e4-43cb-8673-97d97da4ddc4/upstream examples / hello.rb
run/42285a56-c0e4-43cb-8673-97d97da4ddc4/upstream

Tree @run/42285a56-c0e4-43cb-8673-97d97da4ddc4/upstream (Download .tar.gz)

hello.rb @run/42285a56-c0e4-43cb-8673-97d97da4ddc4/upstreamraw · history · blame

#!/usr/bin/env ruby

require 'fox16'

include Fox

application = FXApp.new("Hello", "FoxTest")
main = FXMainWindow.new(application, "Hello", nil, nil, DECOR_ALL)
FXButton.new(main, "&Hello, World!", nil, application, FXApp::ID_QUIT)
application.create()
main.show(PLACEMENT_SCREEN)
application.run()