13 lines
281 B
HTML
13 lines
281 B
HTML
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import {b} from "./batman.js";
|
|
document.body.appendChild(
|
|
document.createTextNode(`Inline script including ${b()}`)
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|