working import transform

This commit is contained in:
NikVolf
2017-04-12 19:10:05 +03:00
parent d8626454bc
commit b6838fe360
3 changed files with 13 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
int ops = 0;
void log(int block_ops) {
ops += block_ops;
}
int call(int x) {
log(5);
return 2 * x;
}