Skip to content

v2.1-alpha

Latest

Choose a tag to compare

@willerf willerf released this 28 Nov 04:46
· 2 commits to main since this release
4dd4776

New Features

  • Dynamic memory allocation via the heap (new/delete keywords)
struct MyStruct {
    a: i32;
    b: char;
}
let my_struct = new MyStruct;
let arr = new i32[10];

See additional documentation on features in the NexLang Reference.

  • Also initial standard library setup with math, print, string and list modules.