From ad89d8b4fb375eb07d11a4a48de3a58261c8d18c Mon Sep 17 00:00:00 2001 From: Aidan Date: Wed, 8 Jul 2020 21:27:56 -0700 Subject: [PATCH] update readme --- Readme.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Readme.md b/Readme.md index 9d46e87..e0d032e 100644 --- a/Readme.md +++ b/Readme.md @@ -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