Dero Virtual machines documentation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

if.md 315B

12345678
  1. # IF
  2. If statement is used to evaluate expression and make decisions.It has following forms
  3. 1. IF expr1 condition expr2 THEN GOTO line number
  4. 2. IF expr1 condition expr2 THEN GOTO line number ELSE GOTO line number
  5. This is used to change execution flow based on conditions.
  6. Conditions can be as complex expressions