RosettaCodeData/Task/Hello-world-Graphical/Fantom/hello-world-graphical.fantom

10 lines
108 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
using fwt
class Hello
{
public static Void main ()
{
Dialog.openInfo (null, "Goodbye world")
}
}