Files
pyscript/pyscript.core/test/fetch.html
2023-06-15 17:08:28 +02:00

18 lines
472 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>python</title>
<script type="module" src="../min.js"></script>
</head>
<body>
<script type="micropython" config="./fetch.toml">
import js
import a, b
js.console.log(a.x)
js.console.log(b.x)
</script>
</body>
</html>