From 787453b8850fdfa44cdacdda85347baf1a5df0dc Mon Sep 17 00:00:00 2001 From: anon <anon@anon.anon> Date: Sun, 10 Mar 2024 15:57:35 +0100 Subject: [PATCH] Added brython_hw.html --- brython_hw.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 brython_hw.html diff --git a/brython_hw.html b/brython_hw.html new file mode 100644 index 0000000..55d2f4f --- /dev/null +++ b/brython_hw.html @@ -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> \ No newline at end of file