miércoles, marzo 21, 2012

JRuby + Jirb + Swing

Tan simple como llamar al jirb que se encuentra en http://jruby.org/tryjruby


y escribir esto que encontré en la wikipedia:

require 'java'
 
frame = javax.swing.JFrame.new()
frame.getContentPane().add(javax.swing.JLabel.new('Hello, World!'))
frame.setDefaultCloseOperation(javax.swing.JFrame::EXIT_ON_CLOSE)
frame.pack()
frame.set_visible(true)


No hay comentarios.: