From 0045795a808d2017bd8e7db9b43a57192ba5eed7 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 12 Jan 2024 11:02:57 -0800 Subject: add loop --- MAINPAGE.md | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'MAINPAGE.md') diff --git a/MAINPAGE.md b/MAINPAGE.md index 0ba8c25..efea70a 100644 --- a/MAINPAGE.md +++ b/MAINPAGE.md @@ -42,3 +42,9 @@ Let's take a closer look at the quote: `.` takes the first thing off the stack and prints it. In this case, it would print a prompt `> ` every REPL loop. `read` reads a value from stdin, then `strquote` turns that string into a quote. `eval` pops the first thing off the stack and evaluates the quote in the same way calling a function does, and then finally `repl` gets called again at the end so we can loop forever. + +## Factorial +Let's take a closer look at the factorial function: +``` + +``` -- cgit