mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
Comparison operators `== / >= /...` return `bool`. Logical operators `&& ||` return bool. Constants `true` and `false` have the `bool` type. Lots of stdlib functions return `bool`, not `int`. Operator `!x` supports both `int` and `bool`. Condition of `if` accepts both `int` and `bool`. Arithmetic operators are restricted to integers. Logical `&&` and `||` accept both `bool` and `int`. No arithmetic operations with bools allowed (only bitwise and logical).
19 lines
334 B
Text
19 lines
334 B
Text
fun main(x: int): int {
|
|
var i: int = 0;
|
|
// int f = false;
|
|
do {
|
|
i = i + 1;
|
|
if (i > 5) {
|
|
return 1;
|
|
}
|
|
var f: bool = (i * i == 64);
|
|
} while (!f);
|
|
return -1;
|
|
}
|
|
|
|
/**
|
|
method_id | in | out
|
|
@testcase | 0 | 0 | 1
|
|
|
|
@code_hash 36599880583276393028571473830850694081778552118303309411432666239740650614479
|
|
*/
|