Hello world/Graphical: Difference between revisions

no edit summary
(→‎{{header|Tcl}}: add another way to do it)
No edit summary
Line 59:
=={{header|AppleScript}}==
display dialog "Goodbye, World!" buttons {"Bye"}
=={{header|AutoHotkey}}==
 
<lang autohotkey>
MsgBox, Goodbye`, World!
</lang>
<lang autohotkey>
ToolTip, Goodbye`, World!
</lang>
<lang autohotkey>
Gui, Add, Text, x4 y4, To be announced:
Gui, Add, Edit, xp+90 yp-3, Goodbye, World!
Gui, Add, Button, xp+98 yp-1, OK
Gui, Show, w226 h22 , Rosetta Code
Return
</lang>
<lang autohotkey>
SplashTextOn, 100, 100, Rosetta Code, Goodbye, World!
</lang>
 
=={{header|C}}==
Anonymous user