Simple Sand Samples |
説明のないとってもシンプルなサンプルプログラム集
PHP | Gawk | C言語 | D言語 | GO言語 | Excel2007 | COBOL |
Bash | Perl | Gauche | Clojure | CLISP | EmacsLisp | VimScript |
Tcl | Ruby | Groovy | Java | C# | Vim | |
Python | Erlang | Scala | OCaml | VBScript | JavaScript | |
Io言語 | Haskell | Windows | Linux |
Groovy > (Swing)Buttonを使う
swing-button.groovy
import javax.swing.* import java.awt.event.* import java.awt.* Test app = new Test() class Test extends JFrame implements ActionListener{ JButton bt = new JButton("PUSH TO EXIT") Test(){ setSize(300,200) setVisible(true) setLayout(new GridLayout(1,1)) add(bt) bt.addActionListener(this) } void actionPerformed(ActionEvent e){ System.exit(0) } }
$ groovy swing-button.groovy