mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
11 lines
245 B
Java
11 lines
245 B
Java
public class Quiz {
|
|
public static void main(String[] args) {
|
|
String a = "";
|
|
String b;
|
|
if (a == b) {
|
|
System.out.println("Nyan Cat");
|
|
} else {
|
|
System.out.println("42");
|
|
}
|
|
}
|
|
}
|