Brightsign BrightScript 3.0 Reference Manual Manual do Utilizador Página 45

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 75
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 44
40
For each n in aa
Print n;aa[n]
aa.delete[n]
end for
WHILE / EXIT WHILE
WHILE expression / EXIT WHILE
A WHILE loop executes until the specified expression is false. Use the EXIT WHILE statement to exit a WHILE block
prematurely.
Example:
k=0
while k<>0
k=1
Print "loop once"
end while
while true
Print "loop once"
Exit while
End while
IF / THEN / ELSE
IF expression THEN statements [ELSE statements]
Vista de página 44
1 2 ... 40 41 42 43 44 45 46 47 48 49 50 ... 74 75

Comentários a estes Manuais

Sem comentários