Update index.js

This commit is contained in:
Nariman Jelveh 2024-08-22 20:47:02 -07:00
parent 055c628afd
commit 2d39b9be77

View File

@ -352,7 +352,7 @@ window.puter = (function() {
print = function(...args){
for(let arg of args){
document.getElementsByTagName('body')[0].append(arg);
document.body.innerHTML += arg;
}
}
}