add hello2 to main file

This commit is contained in:
adrian123 2024-10-14 10:58:02 +02:00
parent 12e635a12a
commit 69139494a2
2 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@ public class DemoApplication {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("hello"); System.out.println("hello");
System.out.println("hello2");
SpringApplication.run(DemoApplication.class, args); SpringApplication.run(DemoApplication.class, args);
} }