> For the complete documentation index, see [llms.txt](https://hyperdapp.gitbook.io/code-editor/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyperdapp.gitbook.io/code-editor/guides/prompt/text.md).

# text

* For displaying a text, you can use the `text()` predicate:

```
prompt :-
  show [
    text('Welcome to HyperDapp!')
  ].
```

* The `text()` predicate can receive multiple text values as follow:

```
prompt :-
  show [
    text('Welcome ', 'to ', 'HyperDapp', '!')
  ].
```

* You can display multiple texts on different lines:

```
prompt :-
  show [
    text('Welcome to'),
    text('HyperDapp!')
  ].
```
