Core: Array is now module

This commit is contained in:
Krzosa Karol
2023-04-22 21:00:02 +02:00
parent ad301153d4
commit 771e9b59b3
3 changed files with 8 additions and 7 deletions

View File

@@ -7,7 +7,6 @@ Features
- for i: int = 0, i < 10, i+=1
- for diff: array
- iterator how to do this without function poly ? for it := iter_begin(), iter_valid(), iter_advance()
- Defer
- Expand macros
- Using directive to bring symbols into local scope
@@ -168,11 +167,9 @@ int main(int argument_count, char **arguments) {
}
}
printf("End of program\n");
#if 1
if (IsDebuggerPresent()) {
Breakpoint;
}
#endif
return 0;
}