Thursday 31 December 2015

Kak apa sih for itu?

For
The For statement allows you to execute a set of statements multiple times.
 
Example
The following example will print out numbers from 1 to 10

For i = 1 To 10
  TextWindow.WriteLine(i)
EndFor


No comments:

Post a Comment