mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
14 lines
213 B
C++
14 lines
213 B
C++
// getter to work around future -O
|
|
vector get(vector v) {
|
|
return v;
|
|
}
|
|
|
|
void test(vector in) {
|
|
vector v = get(in);
|
|
vector b = v * v_x;
|
|
print(vtos(b), "\n");
|
|
}
|
|
|
|
void main() {
|
|
test('20 40 80');
|
|
}
|