From e05b5648ae6981a849568055ef370c55f9fc0949 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Wed, 12 Oct 2022 00:14:08 +0000 Subject: [PATCH] Correct README typo. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6f7ca1a..bcb51d6 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ PebbLisp includes several built-ins functionalities. (def symbol object) ``` -As an example, to store a long greeting message into the short symbol `g`: +As an example, to store a long greeting message into the short symbol `greeting`: ``` -(def g "Hello, how are you today?") +(def greeting "Hello, my dear friend! How are you today?") ``` -`g` will then evaluate to `"Hello, how are you today"`. +`greeting` will then evaluate to `"Hello, my dear friend! How are you today?"`. > Remember that defining an object with the same symbol as an object that already exists is possible, but deletes the original object from the environment!