> For the complete documentation index, see [llms.txt](https://trizen.gitbook.io/sidef-lang/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://trizen.gitbook.io/sidef-lang/programming_tasks/c/command-line_arguments.md).

# Command-line arguments

Command line arguments are available in the ARGV array.

```ruby
say ARGV
```

#### Output:

```
% myprog -c "alpha beta" -h "gamma"
['-c', 'alpha beta', '-h', 'gamma']
```
