Skip to content

Instantly share code, notes, and snippets.

@robi42
Created August 21, 2011 20:29
Show Gist options
  • Save robi42/1161115 to your computer and use it in GitHub Desktop.
Save robi42/1161115 to your computer and use it in GitHub Desktop.
{JFrame, JButton} = javax.swing
main = ->
frame = new JFrame('Hello World!')
button = new JButton('Bye bye')
button.addActionListener (e) ->
system.exit(); return
frame.add 'Center', button
frame.setSize 300, 300
frame.visible = true
return
main() if require.main is module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment