2016-03-25 16:47:20 -07:00
# Show String
2016-05-19 16:50:02 -07:00
Show a number on the [LED screen ](/device/screen ). It will slide left if it is bigger than the screen.
2016-03-25 16:47:20 -07:00
```sig
basic.showString("Hello!")
```
### Parameters
2016-05-19 16:50:02 -07:00
* `text` is a [String ](/reference/types/string ). It can contain letters, numbers, and punctuation.
* `ms` is an optional [Number ](/reference/types/number ). It means the number of milliseconds before sliding the [String ](/reference/types/string ) left by one LED each time. Bigger intervals make the sliding slower.
2016-03-25 16:47:20 -07:00
### Examples:
2016-05-19 16:50:02 -07:00
To show the word **Hello** :
2016-03-25 16:47:20 -07:00
```blocks
basic.showString("Hello")
```
2016-05-19 16:50:02 -07:00
To show what is stored in a [String ](/reference/types/string ) variable:
2016-03-25 16:47:20 -07:00
```blocks
let s = "Hi"
basic.showString(s)
```
### Other show functions
2016-05-19 16:50:02 -07:00
* Use [show number ](/reference/basic/show-number ) to show a number on the [LED screen ](/device/screen ).
* Use [show animation ](/reference/basic/show-animation ) to show a group of pictures on the screen, one after another.
2016-03-25 16:47:20 -07:00
### See also
2016-04-15 16:15:08 -07:00
[String ](/reference/types/string ), [show number ](/reference/basic/show-number ), [show animation ](/reference/basic/show-animation )
2016-03-25 16:47:20 -07:00