Language Reference
Let's get familiar with the language features that can make up a Nox program.
Comments
Nox has C or Java style comment syntax.
// This is a single line comment
/* This is a multi-line
comment block. */
/**
* This is the style of a typical doc string.
*/Types
Every value or expression in Nox has a type.
Last updated
Was this helpful?