eC Programming Language
Sample Code
class HelloApp : Application
{
void Main()
{
PrintLn("Hello, World!!");
}
}
import "ecere"
class HelloForm : Window
{
text = "My First eC Application";
borderStyle = sizable;
clientSize = { 304, 162 };
hasClose = true;
Label label
{
this, position = { 10, 10 }, font = { "Arial", 30 },
text = "Hello, World!!"
};
};
HelloForm hello { };
import "ecere"
class MyApp : GuiApplication
{
driver = "OpenGL";
};
Camera camera
{
fixed,
position = Vector3D { 0, 0, -350 },
orientation = Euler { 0,...
Read more at ec-lang.org