From 420b58e06d148b4066ad3fe0ebe522137fe80577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=94=BF?= Date: Tue, 7 Jul 2020 17:36:41 +0800 Subject: [PATCH 01/41] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Jenkinsfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..e2cfecb9 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,22 @@ +pipeline { + agent any + stages { + stage("检出") { + steps { + checkout([ + $class: 'GitSCM', + branches: [[name: env.GIT_BUILD_REF]], + userRemoteConfigs: [[ + url: env.GIT_REPO_URL, + credentialsId: env.CREDENTIALS_ID + ]]]) + } + } + stage('自定义构建过程') { + steps { + echo "自定义构建过程开始" + // 请在此处补充您的构建过程 + } + } + } +} \ No newline at end of file From e9859ec785cc6af727e72cdc9737f0f5dfa9f71f Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Mon, 27 Jul 2020 15:44:16 +0800 Subject: [PATCH 02/41] Create test.py --- test.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 00000000..44932113 --- /dev/null +++ b/test.py @@ -0,0 +1,2 @@ +def print(): + return "hello coding!" From bc98216adbb1ae12465e108d51745fc2d1c83483 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Fri, 31 Jul 2020 11:24:26 +0800 Subject: [PATCH 03/41] Update test.py --- test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.py b/test.py index 44932113..6f0d0830 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): - return "hello coding!" + welcome = "hello coding!" + return welcome From 9f8541e5dcd819e854d5e7283416a713477e1a40 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Fri, 31 Jul 2020 11:29:40 +0800 Subject: [PATCH 04/41] Update test.py --- test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test.py b/test.py index 6f0d0830..44932113 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,2 @@ def print(): - welcome = "hello coding!" - return welcome + return "hello coding!" From 6dcfadcd2de0798edd216109953130f88f6ee463 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Mon, 3 Aug 2020 18:14:52 +0800 Subject: [PATCH 05/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 44932113..1877e954 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): + print("hello coding!") return "hello coding!" From 6874473d317ebe4f3a581ea474041bbd37500eb0 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 5 Aug 2020 13:56:07 +0800 Subject: [PATCH 06/41] Update test.py --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index 1877e954..d0d0e79d 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,3 @@ def print(): - print("hello coding!") - return "hello coding!" + print_test = "hello coding!" + return print_test From 33eb6158ce57dcd1647b900bd976c574f7eaf78c Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Thu, 6 Aug 2020 13:19:53 +0800 Subject: [PATCH 07/41] Update Jenkinsfile --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e2cfecb9..77908c4d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,8 @@ pipeline { steps { echo "自定义构建过程开始" // 请在此处补充您的构建过程 + sh 'ls -l' } } } -} \ No newline at end of file +} From 7482f31a52e0b2b7b626927ff451b017384f68ba Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Thu, 6 Aug 2020 15:13:00 +0800 Subject: [PATCH 08/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index d0d0e79d..84d90e3e 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,4 @@ def print(): print_test = "hello coding!" + a = 1 return print_test From e196f0ad96f4f16f4c1eee53bc64a22aacd319b8 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Fri, 7 Aug 2020 11:55:46 +0800 Subject: [PATCH 09/41] Update Jenkinsfile --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 77908c4d..a4f1bbb1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,6 +17,7 @@ pipeline { echo "自定义构建过程开始" // 请在此处补充您的构建过程 sh 'ls -l' + sh'echo hello coding>test.txt' } } } From dbe72592b31b3941782611213274bd529a77dfb5 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Fri, 7 Aug 2020 14:38:05 +0800 Subject: [PATCH 10/41] Update Jenkinsfile --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index a4f1bbb1..29a73cdd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,6 +18,7 @@ pipeline { // 请在此处补充您的构建过程 sh 'ls -l' sh'echo hello coding>test.txt' + sh 'ls -l' } } } From 65e81646426807a33f89b3683afdf27df3bea68e Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Fri, 7 Aug 2020 17:04:56 +0800 Subject: [PATCH 11/41] Update Jenkinsfile --- Jenkinsfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 29a73cdd..a4f1bbb1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,6 @@ pipeline { // 请在此处补充您的构建过程 sh 'ls -l' sh'echo hello coding>test.txt' - sh 'ls -l' } } } From e72825c43d445263ff26e70e75b4c8b2e2297bf9 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Fri, 7 Aug 2020 17:16:27 +0800 Subject: [PATCH 12/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 84d90e3e..d0d0e79d 100644 --- a/test.py +++ b/test.py @@ -1,4 +1,3 @@ def print(): print_test = "hello coding!" - a = 1 return print_test From dc412d5b6bdba4bf3098cc5b4f6c3af4ca5177c0 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Mon, 10 Aug 2020 14:08:47 +0800 Subject: [PATCH 13/41] Update Jenkinsfile --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index a4f1bbb1..29a73cdd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,6 +18,7 @@ pipeline { // 请在此处补充您的构建过程 sh 'ls -l' sh'echo hello coding>test.txt' + sh 'ls -l' } } } From 0fe241267d18febb25d6cf0e7f2afa8dbc69a674 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Mon, 10 Aug 2020 14:11:22 +0800 Subject: [PATCH 14/41] Update test.py --- test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test.py b/test.py index d0d0e79d..91acb85c 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,2 @@ def print(): - print_test = "hello coding!" - return print_test + return hello coding From 0f73409432fe57274ef2853d6543b7b56d2e86f0 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Mon, 10 Aug 2020 16:22:43 +0800 Subject: [PATCH 15/41] Update test.py --- test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.py b/test.py index 91acb85c..603ee300 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): - return hello coding + test_print = "hello coding" + return test_print From 82716a82610b1d9b2b601b7538c7730155e25d7c Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Tue, 11 Aug 2020 11:10:42 +0800 Subject: [PATCH 16/41] Update test.py --- test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test.py b/test.py index 603ee300..8074d4b8 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,2 @@ def print(): - test_print = "hello coding" - return test_print + return "hello coding" From d03e44c75cbd5db68572f5c58ba4db97c2c124ed Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Tue, 11 Aug 2020 14:30:17 +0800 Subject: [PATCH 17/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 8074d4b8..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): + a = 1 return "hello coding" From af5890b4c224075559b54381f4236efd1289c834 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Tue, 11 Aug 2020 15:48:50 +0800 Subject: [PATCH 18/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index bf6ce50b..65ef7fc6 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,4 @@ def print(): a = 1 + b = 2 return "hello coding" From f654089d5d9864a3943409359d80e335ff4e6653 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Tue, 11 Aug 2020 15:50:05 +0800 Subject: [PATCH 19/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 65ef7fc6..295a13b4 100644 --- a/test.py +++ b/test.py @@ -1,4 +1,3 @@ def print(): - a = 1 b = 2 return "hello coding" From ed073a67bba88a6b972b427f50080bd0086f3318 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Tue, 11 Aug 2020 17:50:38 +0800 Subject: [PATCH 20/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 295a13b4..8074d4b8 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,2 @@ def print(): - b = 2 return "hello coding" From 767bebbbcc916dbcbc96648012626a7baedb8c3f Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 12 Aug 2020 10:51:22 +0800 Subject: [PATCH 21/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 8074d4b8..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): + a = 1 return "hello coding" From 1b75baa22106c29aeaf89bcf4c09dcf58bff96ac Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 12 Aug 2020 11:14:53 +0800 Subject: [PATCH 22/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index bf6ce50b..8074d4b8 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,2 @@ def print(): - a = 1 return "hello coding" From 4dc38e7b7b08756e704e9d650cfd9f9bcbc60a6d Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 12 Aug 2020 16:31:11 +0800 Subject: [PATCH 23/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 8074d4b8..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): + a = 1 return "hello coding" From 6e0f980f4e64bbd06d1e4e3389ec587742982cfc Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Thu, 13 Aug 2020 16:17:57 +0800 Subject: [PATCH 24/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 8074d4b8..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): + a = 1 return "hello coding" From 0d5d07a96c695b005020a95885c740c4559ebee8 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Thu, 13 Aug 2020 16:22:23 +0800 Subject: [PATCH 25/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index bf6ce50b..8074d4b8 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,2 @@ def print(): - a = 1 return "hello coding" From fdf25b0ae64938eb46f9b4a09854feae778675f3 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Thu, 13 Aug 2020 16:25:49 +0800 Subject: [PATCH 26/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 8074d4b8..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): + a = 1 return "hello coding" From d84920b9bcf0d888d8ac7701af4b7708973e453e Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 19 Aug 2020 17:05:56 +0800 Subject: [PATCH 27/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index bf6ce50b..8074d4b8 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,2 @@ def print(): - a = 1 return "hello coding" From f6a68e92349782c7eeeff0bfd9286ab186e1f5bb Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 19 Aug 2020 17:10:12 +0800 Subject: [PATCH 28/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 8074d4b8..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): + a = 1 return "hello coding" From 1cef921532ad54c3ec3e9fa70ea59856dd155634 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Mon, 14 Sep 2020 10:33:31 +0800 Subject: [PATCH 29/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index bf6ce50b..65ef7fc6 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,4 @@ def print(): a = 1 + b = 2 return "hello coding" From f698de37755af1d6988970bed32f1549a00d3ab1 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Mon, 14 Sep 2020 11:31:39 +0800 Subject: [PATCH 30/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 65ef7fc6..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,4 +1,3 @@ def print(): a = 1 - b = 2 return "hello coding" From 40ba757aefd5e2686f9a447f053515146bdd0a79 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Mon, 14 Sep 2020 14:48:25 +0800 Subject: [PATCH 31/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index bf6ce50b..65ef7fc6 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,4 @@ def print(): a = 1 + b = 2 return "hello coding" From cb015d01bf2985eb168c3ed61a2fce48ee79d68a Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Tue, 15 Sep 2020 23:44:11 +0800 Subject: [PATCH 32/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 65ef7fc6..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,4 +1,3 @@ def print(): a = 1 - b = 2 return "hello coding" From 9fdfd8cc0a5a685016d609060cac350f33a491c5 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Tue, 15 Sep 2020 23:45:43 +0800 Subject: [PATCH 33/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index bf6ce50b..65ef7fc6 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,4 @@ def print(): a = 1 + b = 2 return "hello coding" From d0655f205eaf97b267b85c7daba3e04d7d1a12b3 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 16 Sep 2020 00:06:58 +0800 Subject: [PATCH 34/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 65ef7fc6..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,4 +1,3 @@ def print(): a = 1 - b = 2 return "hello coding" From 4bb9aed563c0c5c97a2efb2d3f013c6ebdafc9d6 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 16 Sep 2020 00:08:19 +0800 Subject: [PATCH 35/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index bf6ce50b..8074d4b8 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,2 @@ def print(): - a = 1 return "hello coding" From db81cb5d133b4a80d8deb502e6b6c3a327039079 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 16 Sep 2020 00:09:27 +0800 Subject: [PATCH 36/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 8074d4b8..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,2 +1,3 @@ def print(): + a = 1 return "hello coding" From 1edc7401af31bef045834e0796a215fe61aabf3e Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 16 Sep 2020 00:10:29 +0800 Subject: [PATCH 37/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index bf6ce50b..65ef7fc6 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,4 @@ def print(): a = 1 + b = 2 return "hello coding" From 9f59cc5033219ab9cfc10f7f278dc46fe427c49b Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 16 Sep 2020 00:11:34 +0800 Subject: [PATCH 38/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 65ef7fc6..295a13b4 100644 --- a/test.py +++ b/test.py @@ -1,4 +1,3 @@ def print(): - a = 1 b = 2 return "hello coding" From 911b97abfe635571817cfe2935bb9503ccd1470a Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Wed, 16 Sep 2020 00:13:05 +0800 Subject: [PATCH 39/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 295a13b4..65ef7fc6 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,4 @@ def print(): + a = 1 b = 2 return "hello coding" From 49c3302977e2b5a6617394a11ef1a20eed169bdc Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Thu, 17 Sep 2020 18:16:22 +0800 Subject: [PATCH 40/41] Update test.py --- test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test.py b/test.py index 65ef7fc6..bf6ce50b 100644 --- a/test.py +++ b/test.py @@ -1,4 +1,3 @@ def print(): a = 1 - b = 2 return "hello coding" From 202f941d6e67461eae5c45605cd0a05e8ca63b97 Mon Sep 17 00:00:00 2001 From: lizheng678 <67216478+lizheng678@users.noreply.github.com> Date: Thu, 17 Sep 2020 18:18:27 +0800 Subject: [PATCH 41/41] Update test.py --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index bf6ce50b..65ef7fc6 100644 --- a/test.py +++ b/test.py @@ -1,3 +1,4 @@ def print(): a = 1 + b = 2 return "hello coding"