Codebase list ruby-fxruby / run/5ae6f8cc-cb8c-48b9-902e-a9bcde79df60/upstream examples / hello.rb
run/5ae6f8cc-cb8c-48b9-902e-a9bcde79df60/upstream

Tree @run/5ae6f8cc-cb8c-48b9-902e-a9bcde79df60/upstream (Download .tar.gz)

hello.rb @run/5ae6f8cc-cb8c-48b9-902e-a9bcde79df60/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()