反復ステートメント - Amazon Lex

反復ステートメント

反復ステートメントは、次のいずれかを指定できます。

// Do..While statement do { statements } while (expressions) // While Loop while (expressions) { statements } // For Loop for ([initialization]; [condition]; [final-expression]) statement // For..In for (variable in object) { statement }