]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - misc/source/gmqcc-src/tests/mul_vf.qc
By fteqcc, hello gmqcc
[voretournament/voretournament.git] / misc / source / gmqcc-src / tests / mul_vf.qc
1 // getter to work around future -O
2 vector get(vector v) {
3     return v;
4 }
5
6 void test(vector in) {
7     vector v = get(in);
8     vector b = v * v_x;
9     print(vtos(b), "\n");
10 }
11
12 void main() {
13     test('20 40 80');
14 }