logo
Amun Programming Language
While
Initializing search
    amun-lang/Amun
    amun-lang/Amun
    • Home
    • Build
    • Compiler Options
      • Hello World
      • Comments
      • Values
      • Assignment
      • Variables
      • Destructuring
      • Const
      • Struct
      • Tuples
      • Enum
      • Arrays
      • Switch
      • For
      • While
      • Break
      • Continue
      • If
      • Defer
      • Function
      • Infix Function
      • Prefix Function
      • Postfix Function
      • Operator Overloading
      • Lambda
      • Memory
      • Varargs
      • Cast
      • Type Size
      • Type Align
      • Value Size
      • Generic
      • Type alias
      • Directives
      • SIMD
    • Contribute

    While

    In Amun while loop is not different from any language while loop you just loop over and over until your condition evaluate to not true

    while (condition) {
        ...
    }
    
    Copyright © 2022 Amr Heshan
    Made with Material for MkDocs