StartTextInput

Family: Input · 2 forms

What it does

StartTextInput makes something happen at once: it starts. It takes no arguments, and returns nothing. That is the first of 2 forms.

Syntax

1
StartTextInput()
2
StartTextInput(initial string)

Parameters

NameTypeIn forms
initialstring2

Every form returns

nothing

Example · generated

Form 1, the short one

StartTextInput()DO  Sync()LOOP

Form 2, with every argument

StartTextInput("value")DO  Sync()LOOP

StartTextInput is called with values of the types its signature asks for. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.

95 commands in Input