Show String

Show a number on the LED screen. It will slide left if it is bigger than the screen.

basic.showString("Hello!")

Parameters

Examples:

To show the word Hello:

basic.showString("Hello")

To show what is stored in a String variable:

let s = "Hi"
basic.showString(s)

Other show functions

See also

String, show number, show animation

Edit this page on GitHub