CMake/Example/Hello/hello.cxx

8 lines
92 B
C++
Raw Normal View History

#include "hello.h"
#include <stdio.h>
void Hello::Print()
{
printf("Hello, World!\n");
}