mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
9 lines
107 B
C++
9 lines
107 B
C++
|
float go(string x) {
|
||
|
print(x, "\n");
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
float x = go("A") + go("B");
|
||
|
}
|