export var functions
This commit is contained in:
parent
a08677b4f4
commit
4865c7ce92
5 changed files with 33 additions and 3 deletions
|
|
@ -65,6 +65,15 @@ We also have functioning implementations of map and reduce in the stdlib
|
|||
- `SHS_SH_PROMPT` Sets the prompt
|
||||
- `SH_HIST_FILE` Sets the history file
|
||||
- `SH_DEBUG_MODE` Adds additional debug output for the lexer
|
||||
Here is an example of a shs configuration file:
|
||||
```lisp
|
||||
(export "GOPATH" (concat HOME "/go"))
|
||||
(export "GOBIN" (concat GOPATH "/bin"))
|
||||
(export "PATH" (concat PATH ":" GOBIN))
|
||||
(export "GIT_TERMINAL_PROMPT" 1)
|
||||
(export "SH_HIST_FILE" (concat HOME "/.shs_hist"))
|
||||
(export "SH_LOGGING" 3)
|
||||
```
|
||||
|
||||
## Contributing
|
||||
- Any contribution to this software is welcome as long as it adheres to the conduct guidelines specified in the `Contributing.md` file in this repository.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue