Habitat is a bunch of jumpyscript helpers that I use in my projects.
Import from it.
<script type="module">
import { print } from "./habitat.js";
print("Hello world!");
</script>
If you want to embed it instead, just Ctrl+F and delete every export
in the file. Then...
<script src="https://github.com/TodePond/Habitat/raw/main/habitat.js"></script>
<script>
print("Hello world!");
</script>