• 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
      • 10. Methods
      • 11. Lambdas
      • 12. Types
      • 13. Type Casting
      • 14. Arrays
      • 15. Associative Arrays
      • 16. Enumerations
      • 17. Modifiers
        • 17.1. Constant
        • 17.2. Visibility
        • 17.3. Pragma
      • 18. Imports
      • 19. Traits
      • 20. Dependent Types
    • Library Reference
    • The Jam Tutorial
    • Jam Roadmap

17. Modifiers

A modifier allows for changing certain properties and guarantees of an object or a group of objects.

  • 17.1. Constant
  • 17.2. Visibility
  • 17.3. Pragma

17.4. Syntax

Modifier      ::=  Constant | Pragma
ModifierValue ::=  (\n InstructionSet "end") | Value

Back to top

Source