From 737949b6cd5d75ea4dc5553d5046e2468992bd02 Mon Sep 17 00:00:00 2001 From: Aram Galoyan Date: Sun, 10 Oct 2021 13:57:56 +0300 Subject: [PATCH 1/4] Added a comment --- backup.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backup.sh b/backup.sh index 735bdcc..303cc02 100644 --- a/backup.sh +++ b/backup.sh @@ -1 +1,4 @@ -print('Hello world!') \ No newline at end of file +print('Hello world!') + + +# Всё для задания From b078b1d1d4d00d844eda511dde2e177c0d3bc886 Mon Sep 17 00:00:00 2001 From: Aram Galoyan Date: Sun, 10 Oct 2021 14:14:21 +0300 Subject: [PATCH 2/4] Added a COmment --- backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup.sh b/backup.sh index 303cc02..96f2e88 100644 --- a/backup.sh +++ b/backup.sh @@ -1,4 +1,4 @@ print('Hello world!') -# Всё для задания +# Всё для выполнения задания From e54787ae6a2d3412036ad9dab85a0c23dc3262d0 Mon Sep 17 00:00:00 2001 From: Aram Galoyan Date: Sun, 10 Oct 2021 18:25:32 +0300 Subject: [PATCH 3/4] Added a cycle --- backup.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backup.sh b/backup.sh index 96f2e88..86f4676 100644 --- a/backup.sh +++ b/backup.sh @@ -2,3 +2,8 @@ print('Hello world!') # Всё для выполнения задания + + +for i in range(10): + print(i) + From 80a0fb8af1cc3413fb371b6ac8a3ad64e357385a Mon Sep 17 00:00:00 2001 From: Aram Galoyan Date: Sun, 10 Oct 2021 18:35:11 +0300 Subject: [PATCH 4/4] Added a function --- backup.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backup.sh b/backup.sh index 86f4676..f5ecd7c 100644 --- a/backup.sh +++ b/backup.sh @@ -7,3 +7,9 @@ print('Hello world!') for i in range(10): print(i) + +def Summa(x,y): + + return x + y + +Summa(5,7)