OTWO-1213 Works around lost encoding in Ruby/C binding layer
[ohcount] / test / detect_files / foo.ec
1 import "ecere"
2
3 class HelloForm : Window
4 {
5    text = "My First eC Application";
6    borderStyle = sizable;
7    size = { 280, 100 };
8    hasClose = true;
9
10    Label label
11    {
12       this, position = { 10, 10 }, font = { "Arial", 30 }, 
13       text = "Hello, World!!"
14    };
15 };
16
17 HelloForm hello { };