Skip to content
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]
] ]
Clone this wiki locally