RosettaCodeData/Task/Hello-world-Graphical/EC/hello-world-graphical-3.ec

16 lines
240 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
import "ecere"
class GoodByeForm : Window
{
text = "Goodbye, World!";
size = { 320, 200 };
hasClose = true;
void OnRedraw(Surface surface)
{
surface.WriteTextf(10, 10, "Goodbye, World!");
}
}
GoodByeForm form {};