mumble

A Lisp written in C, following the *Build Your Own Lisp* book
Log | Files | Refs | README

commit 61df0ac26ee4eeedece783b318a1df54b5ab3048
parent 4f8f0209444672d2c2abc119a6b222da6abab294
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Sun,  7 May 2023 23:08:35 -0400

tweak: add init example.

Diffstat:
MREADME.md | 5++---
Mmumble | 0
2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -76,11 +76,10 @@ mumble> VERBOSITY=1 mumble> VERBOSITY=2 mumble> def {sq} (@ {x} {* x x}) mumble> sq 44 -1936.000000 mumble> def {sqsum} (@ {x y} {(+ (sq x) (sq y))}) -( ) mumble> sqsum 2 3 -( 13.000000 ) +mumble> def {init} (@ {xs} { list((head xs)) } ) +mumble> init {1 2} ``` diff --git a/mumble b/mumble Binary files differ.