mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 12:51:04 +00:00
7 lines
139 B
C++
7 lines
139 B
C++
void(string, string) print = #1;
|
|
string(vector) vtos = #5;
|
|
|
|
void(vector org) main = {
|
|
local vector org;
|
|
print(vtos(org), "\n");
|
|
};
|