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