mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
10 lines
152 B
Text
10 lines
152 B
Text
|
(int, int) nested_if(int id) method_id {
|
||
|
dump_stack();
|
||
|
if (id > 0) {
|
||
|
if (id > 10) {
|
||
|
return (2 * id, 3 * id);
|
||
|
}
|
||
|
}
|
||
|
return (5, 6);
|
||
|
}
|