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!')
  ].

Last updated