mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 10:47:35 -05:00
* Fix #2114 - Cleanup the test folder + automation * Merged both test and tests into a single folder
19 lines
553 B
HTML
19 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" />
|
|
<title>PyTerminal</title>
|
|
<link rel="stylesheet" href="../../dist/core.css">
|
|
<script type="module" src="../../dist/core.js"></script>
|
|
<style>.xterm { padding: .5rem; }</style>
|
|
</head>
|
|
<body>
|
|
<script type="mpy" worker terminal>
|
|
print("µpython")
|
|
import code
|
|
code.interact()
|
|
</script>
|
|
</body>
|
|
</html>
|