Skip to content

Hello World 2 impelmented #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Compiled class file
# Compiled class file
*.class

# Log file
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/com/Hello.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com;

public class Hello {
public static void main(String[] args) {
System.out.println("Heoll world from New branch");
}

}
1 change: 1 addition & 0 deletions src/main/java/com/example/demo/DemoApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public class DemoApplication {

public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
//Hey man, How are you
}

@RequestMapping("/")
Expand Down
1 change: 1 addition & 0 deletions target/classes/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@