Make it easy to create new packages

This commit is contained in:
Justine Tunney 2020-06-15 19:59:12 -07:00
parent b4269930f7
commit d23bb6612e
6 changed files with 90 additions and 36 deletions

View file

@ -1,6 +1,6 @@
#include "examples/package/lib/myprint.h"
int main(int argc, char *argv[]) {
MyPrint("welcome to your package");
MyPrint("welcome to your package\n");
return 0;
}