mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
Mainly to get rid of one top level directory. But this will also be useful when there are tests of the embedding API.
13 lines
151 B
Plaintext
13 lines
151 B
Plaintext
var i = 0
|
|
while (true) {
|
|
i = i + 1
|
|
IO.print(i)
|
|
if (i > 2) break
|
|
IO.print(i)
|
|
}
|
|
// expect: 1
|
|
// expect: 1
|
|
// expect: 2
|
|
// expect: 2
|
|
// expect: 3
|