blob: 582288c6adb40b1773fe07e9fcd9979279e03ba9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class house {
public static void main(String[] args) {
System.out.println("\t / \\");
System.out.println("\t / \\");
System.out.println("\t/ \\");
System.out.println("\t| |");
System.out.println("\t| || |");
System.out.println("\t| || |");
System.out.println("This was awful");
}
}
//By msglm; Licensed under the AGPL v3
|