Whitespace - The Rust Reference (original) (raw)

The Rust Reference

Whitespace

Whitespace is any non-empty string containing only characters that have thePattern_White_Space Unicode property, namely:

Rust is a “free-form” language, meaning that all forms of whitespace serve only to separate tokens in the grammar, and have no semantic significance.

A Rust program has identical meaning if each whitespace element is replaced with any other legal whitespace element, such as a single space character.