aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_libcxx.cpp
blob: 445c5513b0c74c933cc8a47ff570349c4bb0ace6 (plain)
1
2
3
4
5
6
7
8
#include <iostream>

int main()
{
  std::cout << "hello, world!" << std::endl;
  return 0;
}