Files
vortex/runtime/tests/hello/hello.cpp
Malik Burton 959270def1 runtime tests hello modified to return 0 and
vecadd modified to replace printf with vx_print_str.
2020-09-15 18:46:45 -04:00

20 lines
161 B
C++

#include <stdio.h>
struct hello {
int a;
hello()
{
a = 55;
}
};
hello nameing;
int main()
{
nameing.a = 20;
int b;
printf("Passed!\n");
return 0;
}