Added brython_hw.html

This commit is contained in:
anon 2024-03-10 15:57:35 +01:00
parent 5236a8c5c6
commit 787453b885

18
brython_hw.html Normal file
View File

@ -0,0 +1,18 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="brython.js"></script>
<script type="text/javascript" src="brython_stdlib.js"></script>
</head>
<body onload="brython(1)">
<script type="text/python">
from browser import document
document <= "Hello"
</script>
</body>
</html>