gmqcc/testsuite/maths2/main.qc

7 lines
136 B
C++
Raw Normal View History

void(string, ...) print = #1;
string(float) ftos = #2;
void(vector a, vector b) main = {
print("dot = ", ftos(a*b), "\n");
};