-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathenv.html
More file actions
36 lines (36 loc) · 1.11 KB
/
env.html
File metadata and controls
36 lines (36 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!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="../dist/index.js"></script>
</head>
<body>
<script type="micropython">
import sys
import js
version = sys.version
js.document.currentScript.target.textContent = version
</script>
<hr />
<script type="micropython">
import js
js.document.currentScript.target.textContent = version
</script>
<hr />
<script type="pyodide">
import sys
import js
version = sys.version
js.document.currentScript.target.textContent = version
</script>
<hr />
<script type="pyodide" target="last-script-target">
import js
js.document.currentScript.target.textContent = version
</script>
<div id="last-script-target"></div>
</body>
</html>