Back to Puter

puter.print()

src/docs/src/Utils/print.md

26.06.11.0 KB
Original Source

Prints a string by appending it to the body of the document. This is useful for debugging and testing purposes and is not recommended for production use.

Syntax

js
puter.print(text)

Parameters

text (String)

The text to print.

options (Object, optional)

An object containing options for the print function.

  • code (Boolean, optional): If true, the text will be printed as code by wrapping it in a <code> and <pre> tag. Defaults to false.

Examples

<strong class="example-title">Print "Hello, world!"</strong>

<div style="position: relative;">
html
<html>
  <body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
      puter.print("Hello, world!");
    </script>
  </body>
</html>
</div>

<strong class="example-title">Print "Hello, world!" as code</strong>

<div style="position: relative;">
html
<html>
  <body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
      puter.print("Hello, world!", { code: true });
    </script>
  </body>
</html>
</div>