Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
! IF-ELSEIF-ELSE-END IF
|
||||
! SELECT-CASE
|
||||
! ON GOTO, ON GOSUB
|
||||
|
||||
IF expr_booleana THEN
|
||||
sentencia(s)
|
||||
END IF
|
||||
|
||||
|
||||
IF expr_booleana1 THEN
|
||||
sentencia(s)
|
||||
ELSEIF expr_booleana2 THEN
|
||||
sentencia(s)
|
||||
ELSEIF expr_booleana3 THEN
|
||||
sentencia(s)
|
||||
ELSE
|
||||
sentencia(s)
|
||||
END IF
|
||||
|
||||
|
||||
SELECT CASE expr_booleana
|
||||
CASE 1
|
||||
sentencia(s)
|
||||
CASE 2
|
||||
sentencia(s)
|
||||
CASE ELSE
|
||||
sentencia(s)
|
||||
END SELECT
|
||||
|
||||
|
||||
ON expresión GOTO label1, label2 ELSE label3
|
||||
|
||||
|
||||
ON expresión Gosub label1, label2 ELSE label3
|
||||
Loading…
Add table
Add a link
Reference in a new issue