source: tests/vector_math/vec2_uint.cfa @ e054263f

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since e054263f was 9b026f1, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Fixed name clash in test folder

  • Property mode set to 100644
File size: 299 bytes
RevLine 
[ae3db00]1#include "../../libcfa/src/vec/vec2.hfa"
2#include <fstream.hfa>
3#include <limits.hfa>
4
5int main(void) {
6    vec2(unsigned) v1 = {(unsigned)MAX,(unsigned)MIN};
7    sout | "ctor(x,y):" | v1;
8
9    vec2(unsigned) v2 = {3, 4};
10    vec2(unsigned) v3 = {100, 13};
11    sout | "dot(v2,v3):" | dot(v2, v3);
12}
Note: See TracBrowser for help on using the repository browser.