Global Variable argv [src]

Populated by startup code before main(). Not available on WASI or Windows without libc. See std.process.argsAlloc or std.process.argsWithAllocator for a cross-platform alternative.

Type

[][*:0]u8

Source

pub var argv: [][*:0]u8 = if (builtin.link_libc) undefined else switch (native_os) { .windows => @compileError("argv isn't supported on Windows: use std.process.argsAlloc instead"), .wasi => @compileError("argv isn't supported on WASI: use std.process.argsAlloc instead"), else => undefined, }