engine:expressions:more_than_one_instruction

More than one instruction

The engine can execute multiple instructions in a single run. Use semicolon separate the individual instructions.

Example:

$attribute = 4; $skill = 7; ($attribute + $skill)D8

Notes:

  • the last instruction does not need a semicolon.
  • If you forget a semicolon, the engine will get confused and throw an error.
  • If you have too many semicolons following each other, the engine can ignore that.