Command:Else

From Lavish Software Wiki
Revision as of 22:30, 25 May 2005 by Eleven (talk | contribs)
Jump to navigation Jump to search

Syntax

Command Difficulty Rating
Else
Usage Beginner
Level of Understanding Intermediate
Computer Savvy Beginner
Logic Intermediate

Else

Description

Else can be used in conjunction with If to do something when the conditions were not met.

Examples

if x == 5
{
  if y == 6
    varset z 17
}
else
  varset z 20

See Also