Nymbo/self-hosted-python
1
1<!-- Bootstrap HTML for running the unit tests. -->2<!DOCTYPE html>3<html>4 <head>5 <script type="text/javascript">6 window.logs = [];7 console.log = function (message) {8 window.logs.push(message);9 };10 console.warn = function (message) {11 window.logs.push(message);12 };13 console.info = function (message) {14 window.logs.push(message);15 };16 console.error = function (message) {17 window.logs.push(message);18 };19 </script>20 <script src="./pyodide.js"></script>21 </head>22 <body></body>23</html>24 