You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pforthdev
how does one define a string constant in pForth?
c" string constant" constant NAME
won't work because the storage used by c" can be reused at any time which would make NAME point at the latest use of c" and possibly not the original string.
Helmut Eller
unread,
Sep 19, 2018, 9:16:48 AM9/19/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Craig Lindley, pforthdev
: NAME c" string" ;
should work. However these days S" is recommended over C".