Documentation

 

Short user guide

When you start Start.exe, a console window will open.

In the console you can type commands.

There are three languages supported:

 

m-like is a functional language, or currently, maybe I should say expressional language, as you can only write expressions. ml-like is the language that is used to load gui elements and to bind element properties together.

 

To set the mode to these respective languages type js, cpp or . (period)

 

You have access to all the typeinformation of all the.dlls that are loaded into the process,. You can also load new dlls with Module.Load(StringIn path)

 

For a quick intro, type the following in the console window:

 

>var win;
>win = new Window();
>win.Show();
true
>win.Width = 300;
>win.Height = 200;
>win.TitleText = "MyWin";
>Visual;
System::Gui::Visual
>Box;
System::Gui::Media3D::Box
System::x3d::Box

>GetNumberOfProcessors();
4
>GetNumberOfProcessors;
System::uint()() GetNumberOfProcessors
>GetNumberOfProcessors.GetAddress();
268694400
>x3d;
System::x3d
>printClass(Std.Out, Window, 0);

...