OS development takes time and he clearly states this will change, criticizing such a young project with halfquotes is unfair and discouraging for the developers. shame on you.
I'm waiting for OS development to start up in rust as it is clearly the better choice then C/C++ for a kernel.
That syntax has been changed, actually. Now, to allocated an owned pointer allocated on the heap, you use the Box type:
> let a = Box::new(2);
I believe it's an unstable feature currently to use the "box" keyword to heap-allocate a value, which can also be used in pattern matching. I saw somewhere that "box" will be made into an overloadable operator, such that you can easily create reference-counted and atomically reference-counted types.
I'm waiting for OS development to start up in rust as it is clearly the better choice then C/C++ for a kernel.