This repository has been archived on 2023-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
nemu-old/index.html

16 lines
277 B
HTML
Raw Normal View History

2023-03-16 22:26:54 +00:00
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>test</title>
</head>
<body>
<script type="module">
2023-03-16 23:16:53 +00:00
import init, { greet } from "./base/pkg/nemu_base.js";
2023-03-16 22:26:54 +00:00
init().then(() => {
greet("NerdEMU");
});
</script>
</body>
</html>