mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-21 19:25:35 -05:00
46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
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>
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"basic-devtools": "../node_modules/basic-devtools/esm/index.js",
|
|
"coincident/structured": "../node_modules/coincident/structured.js",
|
|
"@ungap/with-resolvers": "../node_modules/@ungap/with-resolvers/index.js"
|
|
}
|
|
}
|
|
</script>
|
|
<script type="module" src="../esm/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<script
|
|
type="micropython"
|
|
src="http://localhost:7357/print-a.py"
|
|
></script>
|
|
<script type="micropython">
|
|
print('B')
|
|
</script>
|
|
<script
|
|
type="micropython"
|
|
src="http://localhost:7357/print-a.py"
|
|
></script>
|
|
<script type="micropython">
|
|
print('C')
|
|
</script>
|
|
<script type="micropython">
|
|
print('D')
|
|
</script>
|
|
<pre>
|
|
A
|
|
B
|
|
A
|
|
C
|
|
D</pre
|
|
>
|
|
</body>
|
|
</html>
|