-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameboy.java
More file actions
25 lines (25 loc) · 1.1 KB
/
Gameboy.java
File metadata and controls
25 lines (25 loc) · 1.1 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
import java.util.Scanner;
import java.io.File;
import java.io.FileNotFoundException;
public class Gameboy {
public static void main(String[] args) throws FileNotFoundException
{
System.out.println("____________________________");
System.out.println("| _________________________ |");
System.out.println("| | | |");
System.out.println("| | ____ | |");
System.out.println("| | / o\\ | |");
System.out.println("| | / ___\\ | |");
System.out.println("| | \\ \\ 0 0 0 | |");
System.out.println("| | \\__\\ | |");
System.out.println("| | | |");
System.out.println("| |_______________________| |");
System.out.println("| //// |");
System.out.println("| //// |");
System.out.println("| _ _ _ |");
System.out.println("| _| |_ / \\ / \\ |");
System.out.println("| |_ _| | A | | B | |");
System.out.println("| |_| \\_/ \\_/ |");
System.out.println("|___________________________|");
}
}