]> git.xonotic.org Git - xonotic/gmqcc.git/blob - testsuite/maths2/main.qc
Fixing some indentation
[xonotic/gmqcc.git] / testsuite / maths2 / main.qc
1 void(string, ...) print = #1;
2 string(float)     ftos  = #2;
3
4 void(vector a, vector b) main = {
5     print("dot = ", ftos(a*b), "\n");
6 };