1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/cgen/tests/2.c
Alexander Medvednikov 651c7e8de1 cgen tests
2019-12-28 11:55:14 +01:00

12 lines
134 B
C

int function1() {
int a = 10 + 1;
return 0;
}
void function2() {
int x = 0;
f64 f = 10.1;
string s = tos3("hi");
int m = 10;
}