yakshaving

This commit is contained in:
2025-06-11 07:23:06 +01:00
parent 34e4d42876
commit ff2bf156db
3 changed files with 7 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ ARGS=./examples/test.scm
RELEASE=0
GFLAGS=-Wall -Wextra -Wswitch-enum -Werror -std=c11
DFLAGS=-ggdb -fsanitize=address -fsanitize=undefined
RFLAGS=-O3
RFLAGS=-O3 -static
DEPFLAGS=-MT $@ -MMD -MP -MF
ifeq ($(RELEASE), 1)

View File

@@ -5,8 +5,7 @@
|#
;; a comment here
"Hello, world! " ; maybe comments here
NIL
"Hello, world!" ; maybe comments here
)
;; comments here comments here comments here comments here comments here
;; comments here comments here comments here comments here

View File

@@ -36,13 +36,13 @@ consider user environments via the context.
*inp, lisp_t **ret)][function link]]
** TODO Evaluator
** TODO Runtime errors
** TODO Better numerics
** TODO Better numerics :numerics:
We currently admit fixed size integers (63 bits). We _need_ more to
be a scheme.
*** Unfixed size integers
*** Rationals
*** Floats
*** Complex numbers
*** TODO Unfixed size integers
*** TODO Rationals
*** TODO Floats
*** TODO Complex numbers
** TODO Primitive operations
** TODO Macros
** TODO Modules