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