mes/TODO

37 lines
512 B
Plaintext
Raw Normal View History

2016-07-10 14:31:45 +01:00
-*-mode:org-*-
* run psyntax.pp v2
** implement core primitives: DONE
begin
define
if
lambda
letrec
quote
set!
** implement minimal needed rsr3/rsr4:
2016-07-10 21:43:23 +01:00
v "string"
2016-07-10 14:31:45 +01:00
#(v e c t o r)
#\CHAR
assq
call-with-values
char?
length
list
list->vector
make-vector
memv
string
2016-07-10 21:43:23 +01:00
v string-append
v string?
2016-07-10 14:31:45 +01:00
symbol?
values
vector
vector->list
vector-length
vector-ref
vector-set!
vector?
2016-07-10 21:43:23 +01:00
... possibly also: any, each, unquote-splicing, ...
2016-07-10 14:31:45 +01:00
** implement extras: (gensym)
** hook-up sc-expand, see guile-1.0?: scheme:eval-transformer