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 0: No OOP, just testing class skipping\n");
int x = 5;
printf("x = %d\n", x);
printf("Success!\n");
return 0;
}