- to be honest, demolish this entire site and re-make it with Sklair accordint to Numelon design principles
These features are to be used in the future when redesigning the website, etc.
- readable iteration:
for i in 1 .. 10,for k,v in t, etc - lua inspired variadics,
function(...){},something(...) - optional nullable types liek
string?which is sugar forstring, null - clean block syntax with no parenthesis for
if,while,for, etc (like in C/C++/JS etc, c style languages) - explicit type annotations but flexible with
[T1, T2]andany - unary operators that make sense (although theyre not necessarily a flex)
++,--,+=,-=,^=, etc. - operator symbols chosen for logical clarity (
|= XOR,\= floor div, etc.)