Initial Import from SVN
This commit is contained in:
11
share/example/cplus.cpp
Normal file
11
share/example/cplus.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
extern "C" {
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
const char *message = "Hello, C++ World!\n";
|
||||
write (1, message, strlen (message));
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user