mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
38 lines
839 B
HTML
38 lines
839 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>
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script type="module" src="../core.js"></script>
|
|
</head>
|
|
<body>
|
|
<script
|
|
type="micropython"
|
|
src="./print-a.py"
|
|
></script>
|
|
<script type="micropython">
|
|
print('B')
|
|
</script>
|
|
<script
|
|
type="micropython"
|
|
src="./print-a.py"
|
|
></script>
|
|
<script type="micropython">
|
|
print('C')
|
|
</script>
|
|
<script type="micropython">
|
|
print('D')
|
|
</script>
|
|
<pre>
|
|
# console should show this order too
|
|
A
|
|
B
|
|
A
|
|
C
|
|
D</pre
|
|
>
|
|
</body>
|
|
</html>
|