Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created December 22, 2016 05:12
Show Gist options
  • Save jerstlouis/f68f785052756e2bb3b7597b731ab71d to your computer and use it in GitHub Desktop.
Save jerstlouis/f68f785052756e2bb3b7597b731ab71d to your computer and use it in GitHub Desktop.
import "ecere"
class Form : Window
{
Form()
{
printf("Form()\n");
}
caption = $"Form1";
background = formColor;
borderStyle = sizable;
hasMaximize = true;
hasMinimize = true;
hasClose = true;
clientSize = { 632, 438 };
}
Form form1 {};
class App : GuiApplication
{
Form form2 { };
App()
{
printf("App()\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment