| Applying science to business management |
  
Asktext Primitive
The asknumber primitive
works quite well in prompting users for a number, but if you need
users to enter text, asktext
works better.
Asktext works exactly like asknumber except that user
responses are not evaluated, they are simply returned as text
strings.
Just like asknumber, asktext has the format
asktext( message, default, title )
For example,
Name:=asktext("What is your
name?")
|