JAVA
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
/*
Title : Just Another Crazy Java Code 😛😛
Author : Aaron Stone
Created and Published : 10.august.2018
Proceed to run and see the output !! See if it works and then wonder how ?!
And Hello guys !! Sorry for disappearing !😅😅
I am back though😁😁
☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️☠️
*/
public class Crazy
{
public static void greet()
{
System.out.println("Greetings, amigos !");
}
public static void main(String[] args) {
((Crazy) null).greet();
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run