mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-28 06:32:44 +00:00
7 lines
136 B
C++
7 lines
136 B
C++
|
void(string, ...) print = #1;
|
||
|
string(float) ftos = #2;
|
||
|
|
||
|
void(vector a, vector b) main = {
|
||
|
print("dot = ", ftos(a*b), "\n");
|
||
|
};
|