Warning: Work in progress! Leave feedback on Zulip or Github if you'd like this doc to be updated.

Special Variables

Why have a new spelling? Because "$@" doesn't work well in expression mode.

Table of Contents
Special Variables

Special Variables

In command mode:

f() {
  echo @ARGV
}
f 'foo bar' 'spam eggs'

In expression mode:

var length = len(ARGV)
var s = sorted(ARGV)

Generated on Mon Feb 17 16:48:51 PST 2020