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; } ```