Оставить минимум | Leave only the minimum

This commit is contained in:
2020-08-17 17:12:18 +03:00
parent d1832a9937
commit 925b8602e8
5 changed files with 10 additions and 9 deletions

6
0000
View File

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

1
abc
View File

@@ -1 +0,0 @@
Wed Jul 15 2020 15:29:48 GMT+0300 (Moscow Standard Time)

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>";
};