mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
134 B
C
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;
|
|
}
|