Terminal
Functions
Read Char
Get a single character input by the user.
Return Type: Char
Signatures:
Read Line
Read a line of text from the terminal. The user will see the text as they type it.
Return Type: String
Signatures:
Terminal Has Input
Checks if there is data waiting to be read by read line or read char.
Return Type: Boolean
Signatures:
Write
Write
Write the passed in data to the terminal.
Parameters:
Name | Type | Description |
---|---|---|
data | Char | The character to write |
Signatures:
Write
Write the passed in data to the terminal.
Parameters:
Name | Type | Description |
---|---|---|
data | Double | The text to write |
Signatures:
Write
Write the passed in data to the terminal.
Parameters:
Name | Type | Description |
---|---|---|
data | Integer | The text to write |
Signatures:
Write
Write the supplied text to the Terminal.
Parameters:
Name | Type | Description |
---|---|---|
text | String | The text to write |
Signatures:
Write Line
Write Line
Write the passed in data, then move to the next line/row of the terminal.
Parameters:
Name | Type | Description |
---|---|---|
data | Char | The character to write |
Signatures:
Write Line
Move to the next line/row of the terminal.
Signatures:
Write Line
Write the passed in data, then move to the next line/row of the terminal.
Parameters:
Name | Type | Description |
---|---|---|
data | Double | The text to write |
Signatures:
Write Line
Write the passed in data, then move to the next line/row of the terminal.
Parameters:
Name | Type | Description |
---|---|---|
data | Integer | The text to write |
Signatures:
Write Line
Write the passed in text, then move to the next line/row of the terminal.
Parameters:
Name | Type | Description |
---|---|---|
line | String | The text to write |
Signatures: