Merge branch 'dev' into 'master'

update readme

See merge request whom/shs!5
This commit is contained in:
Aidan Hahn 2020-07-09 04:28:55 +00:00
commit 351f4d4f64

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