Codebase list ruby-fxruby / 8c92b4fc-47dd-41e6-9b2a-451e389a318c/main examples / hello.rb
8c92b4fc-47dd-41e6-9b2a-451e389a318c/main

Tree @8c92b4fc-47dd-41e6-9b2a-451e389a318c/main (Download .tar.gz)

hello.rb @8c92b4fc-47dd-41e6-9b2a-451e389a318c/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()