[feature] py-editor setup (#1989)

This commit is contained in:
Andrea Giammarchi
2024-03-13 12:25:30 +01:00
committed by GitHub
parent 84f197b657
commit df1d699fe6
5 changed files with 174 additions and 130 deletions

View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../../dist/core.css">
<script type="module" src="../../dist/core.js"></script>
</head>
<body>
<script type="mpy-editor" src="task1.py" env="task1" setup></script>
<script type="mpy-editor" env="task1">
print(a)
</script>
<script type="mpy-editor" env="task2" setup>
b = 2
</script>
<script type="mpy-editor" env="task2">
print(b)
</script>
</body>
</html>

View File

@@ -0,0 +1 @@
a = 1