diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-17 15:54:22 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-17 15:54:22 +1100 |
commit | 16afbddeada7161e931dc261d3404bb5bbc1743d (patch) | |
tree | e75db4d668c6a9ebfd07e4dd4d1fdabb66a95896 /examples/triangle.c | |
parent | ff96a533014174d0857872f86f1536a06089f3d2 (diff) |
add .m on mac. log INFO and module name
Diffstat (limited to 'examples/triangle.c')
-rw-r--r-- | examples/triangle.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/triangle.c b/examples/triangle.c index 1c81d38..83da5e4 100644 --- a/examples/triangle.c +++ b/examples/triangle.c @@ -3,7 +3,11 @@ #include <celeritas.h> int main() { - Core_Bringup("Celeritas Example: Triangle", NULL); + core_bringup("Celeritas Example: Triangle", NULL); + + while (!app_should_exit()) { + // + } return 0; } |