Codebase list ruby-fxruby / 6a3bc375-f65d-4a5f-9572-148c411aee7b/main examples / hello.rb
6a3bc375-f65d-4a5f-9572-148c411aee7b/main

Tree @6a3bc375-f65d-4a5f-9572-148c411aee7b/main (Download .tar.gz)

hello.rb @6a3bc375-f65d-4a5f-9572-148c411aee7b/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()