import TwoColumn from "@/components/TwoColumn.astro"; import Code from "@/components/Code.astro";
print
Prints to stdout.
Signature
<Code
thpcode={fun print(String value) {}}
/>
Description
Prints a single String into stdout. Doesn't return anything.
Examples
<Code
thpcode={print("Hello world!")}
/>