1) I think compile-time function execution is a very big plus for people doing calculations.

For example:

ulong fibonacci(ulong n) { .... }

static x = fibonacci(50); // calculated at compile time! runtime cost = 0 !!!

2) It has support for a BigInt structure in its standard library (which is really fast!)

Reply via email to