9 lines
127 B
C
9 lines
127 B
C
#include "std.h"
|
|
|
|
|
|
int main(int argc, char arg)
|
|
{
|
|
Vec3 v = {0, 1, 0};
|
|
int result = absVelocity(v);
|
|
return result;
|
|
} |