Codebase list ohcount / run/8fccc97f-1091-4606-8a80-1b8fb386766a/main test / detect_files / foo.ec
run/8fccc97f-1091-4606-8a80-1b8fb386766a/main

Tree @run/8fccc97f-1091-4606-8a80-1b8fb386766a/main (Download .tar.gz)

foo.ec @run/8fccc97f-1091-4606-8a80-1b8fb386766a/mainraw · history · blame

import "ecere"

class HelloForm : Window
{
   text = "My First eC Application";
   borderStyle = sizable;
   size = { 280, 100 };
   hasClose = true;

   Label label
   {
      this, position = { 10, 10 }, font = { "Arial", 30 }, 
      text = "Hello, World!!"
   };
};

HelloForm hello { };