Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Error code E0516

The typeof keyword is currently reserved but unimplemented.

Erroneous code example:

fn main() { let x: typeof(92) = 92; }

Try using type inference instead. Example:

fn main() { let x = 92; }