Codebase list ruby-fxruby / 8a909198-7fff-4596-a78d-571f487fdb51/upstream/1.6.45+git20221125.1.7d76b2a examples / hello.rb
8a909198-7fff-4596-a78d-571f487fdb51/upstream/1.6.45+git20221125.1.7d76b2a

Tree @8a909198-7fff-4596-a78d-571f487fdb51/upstream/1.6.45+git20221125.1.7d76b2a (Download .tar.gz)

hello.rb @8a909198-7fff-4596-a78d-571f487fdb51/upstream/1.6.45+git20221125.1.7d76b2araw · 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()