Some questions about porting code from C to BetterC

Bagomot bagomot at gmail.com
Tue Nov 30 19:07:14 UTC 2021


Hello! Please tell me how to translate this snippet from C in 
BetterC:
```c
char all[] = "all";
char *argv_def[] = { all };
if (argc == 0) {
     argc = 1;
     argv = argv_def;
}
```


More information about the Digitalmars-d mailing list