AINE: Accelerated Interactive Narrator Engine
  • Download
  • References
  • Games
  • Wiki
  • Facebook Twitter
  • Name

    break

  • Examples

    Player: {
    i: 0

    Event: Game_Start{
    while(true){
    i++

    if (i > 10)
    break
    }

    print(i)
    // Outputs 11

    i = 0
    while(i < 11){
    i++
    }

    print(i)
    // Outputs 11
    }
    }
  • Description

    Breaks a loop structure such as while or foreach, and jumps to the next statement after.
  • Related

    • break

    • foreach

    • while

  • Contact
  • Terms of Use
  • GitHub
  • Drakkashi.com

The copyright of all images rendered by me goes to their respective owners.
© 2008 Daniel Svejstrup Christensen