docs: add installation prerequisites and quickstart guide to README
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user