mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
16 lines
315 B
Text
16 lines
315 B
Text
|
const int x = 5;
|
||
|
const slice s = "abacaba";
|
||
|
const int y = 3;
|
||
|
const slice s = "abacaba";
|
||
|
const int x = 5;
|
||
|
const int z = 4, z = 4;
|
||
|
|
||
|
int sdeq (slice s1, slice s2) asm "SDEQ";
|
||
|
|
||
|
() main() {
|
||
|
throw_unless(101, x == 5);
|
||
|
throw_unless(102, y == 3);
|
||
|
throw_unless(103, z == 4);
|
||
|
throw_unless(104, sdeq(s, "abacaba"));
|
||
|
}
|