From db08c6d0b58fa4d2867b2968375ad83fe7c88bd4 Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Mon, 28 Oct 2024 19:37:10 -0400 Subject: [PATCH] update readme to use new export syntax --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 37237de..37678da 100644 --- a/README.md +++ b/README.md @@ -64,12 +64,12 @@ You can introduce a variable to global scope using the `export` builtin function ``` # A very useful constant = pi 3.1415926 -export ["pi"] +export pi # Some more useful constants = e 2.71828 = phi 1.6180339887 -export ["e" "phi"] +export (e phi) ``` ## Functions