;
: readflonum ( -- flonum )
- \ DRAFT!!!
- readfixnum drop i->f
+ readfixnum drop
+ dup 0< swap abs i->f
+
+ [char] . nextchar = if
+ inc-parse-idx
+
+ 10.0 ( f exp )
- [char] . netchar = if
- 10 i->f
begin digit? while
- nextchar [char] 0 - i->f over f/ f+
+ nextchar [char] 0 - i->f ( f exp d )
+ over f/ rot f+ ( exp f' )
+ swap 10.0 f* ( f' exp' )
inc-parse-idx
repeat
+
+ drop
then
[char] e nextchar = [char] E nextchar = or if
+ inc-parse-idx
+ 10.0
readfixnum drop i->f
- f^
+ f^ f*
+ then
+
+ swap if
+ -1.0 f*
then
flonum-type
exit
then
+ flonum? if
+ readflonum
+ exit
+ then
+
boolean? if
readbool
exit
: self-evaluating? ( obj -- obj bool )
boolean-type istype? if true exit then
fixnum-type istype? if true exit then
+ flonum-type istype? if true exit then
character-type istype? if true exit then
string-type istype? if true exit then
nil-type istype? if true exit then
\ ---- Print ---- {{{
-: printfixnum ( fixnumobj -- ) drop 0 .R ;
+: printfixnum ( fixnum -- ) drop 0 .R ;
+
+: printflonum ( flonum -- ) drop f. ;
-: printbool ( numobj -- )
+: printbool ( bool -- )
drop if
." #t"
else
:noname ( obj -- )
fixnum-type istype? if printfixnum exit then
+ flonum-type istype? if printflonum exit then
boolean-type istype? if printbool exit then
character-type istype? if printchar exit then
string-type istype? if printstring exit then