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

    ; (semicolon)

  • Examples

    Player: {
    i:
    list:
    b:

    Event: Game_Start {
    // 3 different statement structures which are all computable

    i = 0; list = [0,1,2]; b = false;

    i = 0;
    list = [0,1,2];
    b = false;

    i = 0
    list = [0,1,2]
    b = false
    }
    }
  • Description

    A statement terminator which separates lines in the code. A statement is a complete instruction to the computer and the semicolon is used to separate instructions.

    The engine understands logical line break as a statement terminator, so semicolon is redundant unless you want several statements to go on the same line.
  • Syntax

    • statement
    • statement;
    • statement; statement;

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

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