7 lines
170 B
Text
7 lines
170 B
Text
/* NetRexx */
|
|
options replace format comments java crossref symbols binary
|
|
|
|
import javax.swing.
|
|
|
|
msgText = 'Goodbye, World!'
|
|
JOptionPane.showMessageDialog(null, msgText)
|