From 214e553a6930c4d34319058acf5c0a68fa0f33d9 Mon Sep 17 00:00:00 2001 From: Igor Narvaev-Ivanov Date: Tue, 21 Jun 2022 17:43:24 +0600 Subject: [PATCH 1/2] Rename method --- Hello.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Hello.java b/Hello.java index 8624181..4da8955 100644 --- a/Hello.java +++ b/Hello.java @@ -1,10 +1,10 @@ public class Hello { public static void main(String[] args) { - printGreeting(); + printGreeting1(); } - public static void printGreeting() { + public static void printGreeting1() { System.out.println("Hello, version control!"); } } From e2dd0497d8fc2920eb919c70e4b7b714b4fb74cc Mon Sep 17 00:00:00 2001 From: Igor Narvaev-Ivanov Date: Tue, 21 Jun 2022 18:14:13 +0600 Subject: [PATCH 2/2] Add cpp file --- main.cpp | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 main.cpp diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..4077e3f --- /dev/null +++ b/main.cpp @@ -0,0 +1,4 @@ +#include + +void main() { +} \ No newline at end of file