klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

commit 2dc55373360d82776f2732e47548ee6391c8ac98
parent 321b066952b5a857461b2b68a06b179d3923b260
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Tue, 22 Feb 2011 10:44:07 -0300

Added some TODO items in the tokenizer.

Diffstat:
Msrc/ktoken.c | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/ktoken.c b/src/ktoken.c @@ -8,10 +8,17 @@ /* ** TODO: ** +** From the Report: ** - Support other number types besides fixints and exact infinities ** - Support for complete number syntax (exactness, radix, etc) -** - Support for unicode (strings, char and symbols). ** - Error handling +** +** NOT from the Report: +** - Support for unicode (strings, char and symbols). +** - srfi-30 stype #| ... |# nested comments and srfi-62 style #; +** sexp comments. +** - more named chars (like #\tab and in strings "\t") +** - numeric escaped chars (like #\u0020) ** */ #include <stdio.h>