RosettaCodeData/Task/Hello-world-Graphical/NetRexx/hello-world-graphical-1.netrexx
2023-07-01 13:44:08 -04:00

7 lines
170 B
Text

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