Compare commits

5 Commits

4 changed files with 10 additions and 8 deletions

6
0000
View File

@@ -1,5 +1,5 @@
Привет Привет | Hello
1.0.0 1.0.0
/привет.череда /привет|hello.череда
x /привет.js x /привет|hello.js

View File

@@ -1,5 +0,0 @@
ПоприветствоватьМир = function()
{
console.log("Привет, мир!");
document.body.innerHTML = "<h1>Привет, мир!</h1>";
};

7
привет|hello.js Normal file
View File

@@ -0,0 +1,7 @@
ПоприветствоватьМир = function()
{
console.log("Привет, мир!");
console.log("Hello, world!");
document.body.innerHTML += "<h1>Привет, мир!</h1>";
document.body.innerHTML += "<h1>Hello, world!</h1>";
};