mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-15 04:32:21 +00:00
14 lines
229 B
Text
14 lines
229 B
Text
(int, int) main(int id) {
|
|
if (id > 0) {
|
|
if (id > 10) {
|
|
return (2 * id, 3 * id);
|
|
}
|
|
}
|
|
return (5, 6);
|
|
}
|
|
{-
|
|
method_id | in | out
|
|
TESTCASE | 0 | 0 | 5 6
|
|
TESTCASE | 0 | 4 | 5 6
|
|
TESTCASE | 0 | 11 | 22 33
|
|
-}
|