RosettaCodeData/Task/Hello-world-Graphical/NetRexx/hello-world-graphical-1.netrexx

8 lines
170 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/* NetRexx */
options replace format comments java crossref symbols binary
import javax.swing.
msgText = 'Goodbye, World!'
JOptionPane.showMessageDialog(null, msgText)