LibJS: Replace the global print() function with console.log() :^)

This commit is contained in:
Andreas Kling 2020-03-16 14:58:20 +01:00
commit 086f68e878
Notes: sideshowbarker 2024-07-19 08:16:35 +09:00
10 changed files with 109 additions and 25 deletions

View file

@ -1,2 +1,2 @@
var foo = "foobar";
print(foo.charAt(3));
console.log(foo.charAt(3));