aboutsummaryrefslogtreecommitdiff
path: root/examples/hello_world/tests/main.cpp
blob: 28bab0843c2e323197d3d8eb31de7f676be91006 (plain)
1
2
3
4
5
6
7
#include <cstdio>

int main(int argc, char **argv)
{
    printf("hello, world!\n");
    return 0;
}