<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script type="module">
import aaa from "./index.js";
import { bbb } from "./index.js";
import { ccc } from "./index.js";
console.log(ccc);
import { d } from "./index.js";
import * as obj from "./index.js"
</script>
</body>
</html>
const aaa = 123
export default aaa;
export const bbb = 444;
const ccc = 555
export {ccc};
const ddd = 666
export{ ddd as d}