mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 13:51:28 +00:00
This commit: * Fixes compilation and execution errors for C++ programs in LibOS/shim/test/native. * Adds a C++ regression test.
8 lines
104 B
C++
8 lines
104 B
C++
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "User Program Started" << std::endl;
|
|
return 0;
|
|
}
|