forked from 0xrumble/BytecodeScreen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogo.java
More file actions
17 lines (16 loc) · 1.04 KB
/
Logo.java
File metadata and controls
17 lines (16 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package app;
public class Logo {
public static void PrintLogo() {
String logo = " ____ _ _ _____ \n" +
" | _ \\ | | | | / ____| \n" +
" | |_) |_ _| |_ ___ ___ ___ __| | ___| (___ ___ _ __ ___ ___ _ __ \n" +
" | _ <| | | | __/ _ \\/ __/ _ \\ / _` |/ _ \\\\___ \\ / __| '__/ _ \\/ _ \\ '_ \\ \n" +
" | |_) | |_| | || __/ (_| (_) | (_| | __/____) | (__| | | __/ __/ | | |\n" +
" |____/ \\__, |\\__\\___|\\___\\___/ \\__,_|\\___|_____/ \\___|_| \\___|\\___|_| |_|\n" +
" __/ | \n" +
" |___/ \n" +
" ---Author 0xrumble";
System.out.println(logo);
System.out.println("");
}
}