From 40e726779a0fca5afe169f98e9d7353317fcea6f Mon Sep 17 00:00:00 2001 From: jusax23 Date: Sun, 15 May 2022 22:33:38 +0200 Subject: [PATCH] Corrections --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 489fbc8..e1ccde2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Recently I was wondering if it is possible to run a program from the pico's ram. - float - bool -### Calculation +### Calculations ```lisp (+ a b) (+ a b c) ;... @@ -38,13 +38,13 @@ Recently I was wondering if it is possible to run a program from the pico's ram. (/ a b) (/ a b c) ;... ``` -###print +### print ```lisp (print a) ``` -###Comparisons and Branches +### Comparisons and Branches ```lisp (< 4 5) @@ -67,7 +67,7 @@ Set Variables: (let myvar2 (+ 5 1)) ``` -###Functions +### Functions Define and call Functions: ```lisp