• About
  • Documentation
  • Github
  • Jam v0.0.1 Documentation
    • The Jam Language Reference
      • 1. Comments
      • 2. Instructions
      • 3. Values
      • 4. Identifiers
      • 5. Literals
      • 6. Operations
      • 7. Variables
      • 8. Assignments
      • 9. Flow Control
        • 9.1. Loops
        • 9.2. Conditionals
      • 10. Methods
      • 11. Lambdas
      • 12. Types
      • 13. Type Casting
      • 14. Arrays
      • 15. Associative Arrays
      • 16. Enumerations
      • 17. Modifiers
      • 18. Imports
      • 19. Traits
      • 20. Dependent Types
    • Library Reference
    • The Jam Tutorial
    • Jam Roadmap

9. Flow Control

Flow control is the way a programmer is able to change the execution flow of a program. There are two kinds of flow control:

  • 9.1. Loops
  • 9.2. Conditionals

9.3. Syntax

FlowControl ::=  Loop | Conditional

Back to top

Source