Codebase list ruby-fxruby / 5c2d0227-fc30-4ad3-b307-ed5ef791dacb/upstream examples / hello.rb
5c2d0227-fc30-4ad3-b307-ed5ef791dacb/upstream

Tree @5c2d0227-fc30-4ad3-b307-ed5ef791dacb/upstream (Download .tar.gz)

hello.rb @5c2d0227-fc30-4ad3-b307-ed5ef791dacb/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()