Support Hello World

This commit is contained in:
Jaby
2022-08-31 10:55:25 +02:00
parent d806c5c5e2
commit 367e4d5b3f
4 changed files with 17 additions and 13 deletions

View File

@@ -1,8 +0,0 @@
#include <stdio.h>
int x = 0;
void _start() {
//call main here
printf("Hello Planschbecken c: %i\n", x);
}

View File

@@ -0,0 +1,7 @@
#include <stdio.h>
namespace JabyEngine {
void start() {
printf("Hello Planschbecken\n");
}
}