docs: add installation prerequisites and quickstart guide to README

This commit is contained in:
2025-11-23 20:33:07 +00:00
parent 32fe81de30
commit 49c61e6cea
19 changed files with 1247 additions and 10 deletions
+11
View File
@@ -0,0 +1,11 @@
class Empty {
int value = 42;
}
int main() {
printf("Step 1: Object creation test\n");
int obj = new Empty();
printf("Object created, pointer = %d\n", obj);
printf("Success!\n");
return 0;
}