mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-01 12:20:49 +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");
|
|
}
|