mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-22 19:53:00 -05:00
18 lines
472 B
HTML
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>
|