Linisp

Variables
Login

Variables

This page concerns variables that are built into the Linisp language its self. To learn how to define variables please read the entry for = and export in Functions.

argv

Type: Q-Expression of Strings

Lists any arguments passed to the script being executed.

environ

Type: Q-Expression of Strings

Lists of present environment variables such as $PATH.

Note-1 Both a variable's name and its value are kept in a single string separated by a '=' character.

Eg. "VARNAME=somevalue"

Note-2 This variable is not dynamically updated by the setenv or unsetenv functions at this time.