Files
pyscript/pyscript.core/test/order.html
2023-06-22 21:37:11 +02:00

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>