<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>


S" Search:

In String Words in TurboForth Kernal

Word Name: S"
Type: Immediate compiling word
Data Stack Signature: -- addr len
Return Stack Signature: --
Availability: V1.0  V1.1  V1.2
Description:

Stores a string. At run-time, the address addr and length len of the string are pushed to the stack.

Example:

: COMPUTER$ ( -- addr len )
  S" TI-99/4A"
;
COMPUTER$ TYPE

(displays TI-99/4A)

Comment:

none

See Also: ." 

<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>