Files
pyscript/pyscript.core/test/order.html
Andrea Giammarchi af72e232c3 Worker sync utility (#1511)
* patched an issue with wasmoon randomly asking to resolve proxy references
  * simplified pyodide and micropython dance by grouping their common utilities together
  * created an integration test around a worker to main thread input between MicroPython and Lua
  * commented some weird bugs / funny behaviors around both MicroPython and Pyodide
  * other minor clean ups
2023-06-08 11:10:47 +02:00

40 lines
1.1 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="mpy" src="http://localhost:7357/print-a.py"></script>
<script type="mpy">
print('B')
</script>
<script type="mpy" src="http://localhost:7357/print-a.py"></script>
<script type="mpy">
print('C')
</script>
<script type="mpy">
print('D')
</script>
<pre>
A
B
A
C
D</pre
>
</body>
</html>