tdwsl / aster-forth

a portable forth in c
MIT License
1 stars 0 forks source link

comma-quote? #11

Open wboeke opened 2 weeks ago

wboeke commented 2 weeks ago

I have a request: in aster, there is one string-word missing: ," It would make possible e.g.:

create nam ," John"
nam count type

Maybe for you it would be easy to implement this?

tdwsl commented 1 day ago

Hey, sorry for getting back so late! This word does seem nice to have. It can be implemented with the following: : ," [char] " word c@ 1+ allot ; And it's now added to aster.f