.ask()

Description

Ask will pause execution of the program to wait for an input from the user and then return that input.

Parameters

Ask takes no parameters

Usage On Strings

str = "how are you today?".ask()
// ask the user a question

log str
// returns the user's inputted string

Last updated