update readme

This commit is contained in:
Aidan 2020-07-08 21:27:56 -07:00
parent 81d299aa5e
commit ad89d8b4fb
No known key found for this signature in database
GPG key ID: 327711E983899316

View file

@ -74,12 +74,12 @@ We also have functioning implementations of map and reduce in the stdlib (incomp
- `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" 0)
(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 0)
```
## Contributing