Input

Reads user input from the console into a variable

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Reads user input from the console into a variable

Technical Exegesis...

Reads user input from the console into a variable. Takes an optional prompt string to display before waiting for input, followed by the variable to store the input. The program pauses until the user enters text and presses Enter. Commonly used with String variables to capture text input from the user.

Example

Example.bam
; No example implemented yet