Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
14 lines (12 loc) · 509 Bytes

File metadata and controls

14 lines (12 loc) · 509 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { init } from "./.build/plugins/PackageToJS/outputs/Package/index.js";
const { exports } = await init({});
const Greeter = exports.Greeter;
const greeter = new Greeter("World");
const circle = exports.renderCircleSVG(100);
// Display the results
const textOutput = document.createElement("div");
textOutput.innerText = greeter.greet()
document.body.appendChild(textOutput);
const circleOutput = document.createElement("div");
circleOutput.innerHTML = circle;
document.body.appendChild(circleOutput);
Morty Proxy This is a proxified and sanitized view of the page, visit original site.