<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>
In String Constant Words in String Library
Displays the string allocated to the specified string constant.
50 $CONST WELCOME \ define a string constant called WELCOME WELCOME :=" Hello, World!" \ assign the string Hello, World! to WELCOME WELCOME .$CONST \ display it
50 $CONST WELCOME
WELCOME :=" Hello, World!"
WELCOME .$CONST
None