You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
angerangel edited this page Mar 8, 2013
·
1 revision
USAGE
ASK question /hide
DESCRIPTION
Ask the user for input.
ASK is a function value.
ARGUMENTS
question -- Prompt to user (series!)
REFINEMENTS
/hide -- mask input with *
#SOURCE
ask: make function! [ [
"Ask the user for input."
question [series!] "Prompt to user"
/hide "mask input with *"
][
prin question
trim either hide [input/hide] [input]
] ]