1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-15 04:32:21 +00:00
ton/crypto/func/test/i1.fc

15 lines
150 B
Text
Raw Normal View History

global int i;
#include "i1sub1.fc";
() sub0() impure { i = 0; }
#include "i1sub2.fc";
() main() impure {
sub0();
sub1();
sub2();
i = 9;
}