Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 293 Bytes

File metadata and controls

20 lines (14 loc) · 293 Bytes

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;