Sha256: fc457014ef343c1c78ad1fa53f82bb247da68023c6bb3bf5961fc8dbe73e9cd9

Contents?: true

Size: 300 Bytes

Versions: 5

Compression:

Stored size: 300 Bytes

Contents

#!/usr/bin/env ruby

require 'fox12'

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()

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fxruby-1.2.3 examples/hello.rb
fxruby-1.2.2 examples/hello.rb
fxruby-1.2.4 examples/hello.rb
fxruby-1.2.5 examples/hello.rb
fxruby-1.2.6 examples/hello.rb