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.