]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/vec_ops.qc
Merge branch 'master' into cooking
[xonotic/gmqcc.git] / tests / vec_ops.qc
1 void main(vector v) {
2     print(vtos(v), "\n");
3     v /= 2;
4     print(vtos(v), "\n");
5     print(vtos(v / 2), "\n");
6     print(vtos(v), "\n");
7 }