Codebase list ruby-fxruby / 395fc099-1991-4f0c-b6fa-b6b71bc9ca3e/main examples / hello.rb
395fc099-1991-4f0c-b6fa-b6b71bc9ca3e/main

Tree @395fc099-1991-4f0c-b6fa-b6b71bc9ca3e/main (Download .tar.gz)

hello.rb @395fc099-1991-4f0c-b6fa-b6b71bc9ca3e/mainraw · 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()