Todo
Overview
The global Todo type/value is used to specify that code is not yet implemented. When used as a type, Todo acts
as an alias for the Never intrinsic type, whereas the Todo value forces a program failure.
// The following method can be used safely however will fail if called.
let method = fn: Todo {
Todo("The following code has not yet been implemented!");
};