Nova < : > New Syntax Language
NovaBook < : > Official User Guide for the Nova Programming Language Nova is designed with a primary goal: to make code flow from left to right, much like natural writing. 1. Basics 2. Structure 3. Control Flow 4. Advanced 5. OOP 6. Intermodular 7. File system 1. The Basics: Syntax & Variables First, let's cover the fundamental building blocks of the Nova language. Key Concepts Reversed Assignment Operator: Instead of variable = value, Nova uses value : variable . This allows for a natural left-to-right flow (e.g., a + b : a). Tagged Keywords: Control flow is enclosed in curly braces, like a markup language. Examples: <while> , <fun> , <if> . Comments: Single-line comments begin with // . Data Types & Operators Nova supports standard data types: int: integer float: float decimal char: character string: array of "char" bool: b...