Skip to content
Open
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
19 changes: 19 additions & 0 deletions Java/EightDigitHelloWorld.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@


public class EightDigitHelloWorld {

private static final String firstLine = " _ _ _ _ _ ";
private static final String secondLine = "|_| |_ | | | | \\ / | | |_| | | \\ | |";
private static final String thirdLine = "| | |_ |_ |_ |_| \\/\\/ |_| | \\ |_ |_/ o o";

public static void main(String args[]) {
printHelloWorld();
}

private static void printHelloWorld() {
System.out.println(firstLine);
System.out.println(secondLine);
System.out.println(thirdLine);
}

}