Skip to content

Instantly share code, notes, and snippets.

@evilpie
Created February 9, 2017 16:42
Show Gist options
  • Save evilpie/898b2a677e880c2ee1c95fd55ff5340d to your computer and use it in GitHub Desktop.
Save evilpie/898b2a677e880c2ee1c95fd55ff5340d to your computer and use it in GitHub Desktop.
import {square} from "/b.js";
alert(square(5));
export function square(x) {
return x * x;
}
<html>
<head>
<script src="a.js" type="module"></script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment