7 lines
54 B
Text
7 lines
54 B
Text
var a = 1;
|
|
while (a < 10) {
|
|
a = a + 1;
|
|
}
|
|
|
|
print a;
|
|
|