mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-15 04:32:21 +00:00
14 lines
207 B
Text
14 lines
207 B
Text
|
fun main(x: int) {
|
||
|
while (x > 0) {
|
||
|
if (x == 10) {
|
||
|
break;
|
||
|
}
|
||
|
x = x -1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr break/continue from loops are not supported yet
|
||
|
*/
|