Work on adding a puppet for the server side aswell

This commit is contained in:
Michael Mikovsky
2025-08-24 10:59:46 -06:00
parent 5f38d85e6c
commit 319c0fc222
13 changed files with 255 additions and 19 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <stdio.h>
const char line[] = "12345";
int main() {
printf("My pointer is: %p\n", *line);
return 0;
}