Basic syntax ============== Variables --------- .. code-block:: beetle int x = 10 string name = "Beetle" Conditionals ------------ .. code-block:: beetle if x > 5 { print("Greater than 5") } Loops ----- .. code-block:: beetle for i in 0..10 { print(i) }