Return a list of the command-line arguments passed to the currently running program. If the program invoked Guile with the ‘-s’, ‘-c’ or ‘--’ switches, these procedures ignore everything up to and including those switches.
Look up the string name in the current environment. The return value is
#funless a string of the formNAME=VALUEis found, in which case return the stringVALUE.
Modify the environment of the current process, which is also the default environment inherited by child processes.
If value is
#f, then name is removed from the environment. Otherwise, the string name=value is added to the environment, replacing any existing string with name matching name.The return value is unspecified.
If env is omitted, return the current environment as a list of strings. Otherwise set the current environment, which is also the default environment for child processes, to the supplied list of strings. Each member of env must be of the form
NAME=VALUE(it is an error to omit ‘=’, butVALUEis optional). If a NAME appears more than once in env, its value is taken from the first one specified.
Modify the environment of the current process, which is also the default environment inherited by child processes.
If str is of the form
NAME=VALUEthen it is written directly into the environment, replacing any existing environment string with name matchingNAME. If str does not contain an equal sign, then any existing strings with name matching str are removed.