mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
9 lines
152 B
Text
9 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);
|
|
}
|