forked from leecottrellhotmail/GitQuiz2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGitQuiz2.java
31 lines (28 loc) · 920 Bytes
/
GitQuiz2.java
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
/*
* Your job is simple. Create method with your lastname. Make it System.out.println a joke.
* Call the method in the main.
* Send it back to my repository.
*/
package gitquiz2;
/**
*
* @author lee_c
*/
public class GitQuiz2 {
public static void Cottrell(){
System.out.println("A DBA walks into a bar, approaches two tables and says ");
System.out.println("'Hey, mind if I join you?'");
System.out.println("\nThere are 10 types of people in the world: those who understand binary, and those who don't.");
}
public static void Negri(){
System.out.println("Why does Snoop Dogg always carry an umbrella?");
System.out.println("FO DRIZZLE!");
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
Negri();
}
}