forked from Jasonandy/java-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
44 lines (42 loc) · 2.89 KB
/
Main.java
File metadata and controls
44 lines (42 loc) · 2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* <html>
* <body>
* <P> Copyright 1994 JasonInternational </p>
* <p> All rights reserved.</p>
* <p> Created on 19941115</p>
* <p> Created by Jason https://github.com/Jasonandy/patterns </p>
* </body>
* </html>
*/
package cn.ucaner.pattern;
/**
* @Package:cn.ucaner.pattern
* @ClassName:Main
* @Description: <p> example - https://github.com/Jasonandy/patterns</p>
* @Author: - Jason
* @CreatTime:2018年10月18日 上午10:02:50
* @Modify By:
* @ModifyTime: 2018年10月18日
* @Modify marker:
* @version V1.0
*/
public class Main {
public static void main(String[] args) {
System.out.println("********************************************* https://github.com/Jasonandy/patterns *****************************************");
System.out.println("********************************************* GitHub 开源项目,欢迎Fork关注学习! ***********************************************");
System.out.println("******************************************************************************************************************************");
System.out.println(" ___ ___ ___ ___ ___ ___ \n" +
" / /\\ / /\\ ___ ___ / /\\ / /\\ /__/\\ / /\\ \n" +
" / /::\\ / /::\\ / /\\ / /\\ / /:/_ / /::\\ \\ \\:\\ / /:/_ \n" +
" / /:/\\:\\ / /:/\\:\\ / /:/ / /:/ / /:/ /\\ / /:/\\:\\ \\ \\:\\ / /:/ /\\ \n" +
" / /:/-/:/ / /:/-/::\\ / /:/ / /:/ / /:/ /:/_ / /:/-/:/ _____\\__\\:\\ / /:/ /::\\ \n" +
" /__/:/ /:/ /__/:/ /:/\\:\\ / /::\\ / /::\\ /__/:/ /:/ /\\ /__/:/ /:/___ /__/::::::::\\ /__/:/ /:/\\:\\\n" +
" \\ \\:\\/:/ \\ \\:\\/:/__\\/ /__/:/\\:\\ /__/:/\\:\\ \\ \\:\\/:/ /:/ \\ \\:\\/:::::/ \\ \\:\\--\\--\\/ \\ \\:\\/:/-/:/\n" +
" \\ \\::/ \\ \\::/ \\__\\/ \\:\\ \\__\\/ \\:\\ \\ \\::/ /:/ \\ \\::/--- \\ \\:\\ --- \\ \\::/ /:/ \n" +
" \\ \\:\\ \\ \\:\\ \\ \\:\\ \\ \\:\\ \\ \\:\\/:/ \\ \\:\\ \\ \\:\\ \\__\\/ /:/ \n" +
" \\ \\:\\ \\ \\:\\ \\__\\/ \\__\\/ \\ \\::/ \\ \\:\\ \\ \\:\\ /__/:/ \n" +
" \\__\\/ \\__\\/ \\__\\/ \\__\\/ \\__\\/ \\__\\/ ");
System.out.println("------------------------------------------------------------------------------------------------------------------------------");
System.out.println("-------------------------------------------------- jasonandy@hotmail.com -----------------------------------------------------");
}
}