Syntax Basics This document covers the basic syntax rules of Flare. Statements End with a semicolon (;). Blocks Enclosed in curly braces { ... }. Comments Single-line: // comment Multi-line: /* comment */ Example // This is a comment int x = 5;