Rebol Programming/ask
USAGE:
editASK question /hide
DESCRIPTION:
editAsk the user for input.
ASK is a function value.
ARGUMENTS
edit- question -- Prompt to user (Type: series)
REFINEMENTS
edit- /hide -- mask input with *
SOURCE CODE
editask: func [ "Ask the user for input." question [series!] "Prompt to user" /hide "mask input with *" ][ prin question trim either hide [input/hide] [input] ]