Files
pyscript/pyscript.core/test/py-editor/index.html
2024-03-13 12:25:30 +01:00

22 lines
553 B
HTML

<!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>