8 lines
65 B
Text
8 lines
65 B
Text
|
|
a := 0
|
|
while a < 10 {
|
|
print(".")
|
|
a = a + 1
|
|
}
|
|
|
|
write("")
|