Terminal - null-tech
▊
Null Tech
Where null becomes innovation
Recompile
// Welcome to Null Tech
public class
Main
{
public static void
main(String[] args)
{
Object obj = null;
obj.toString(); // NullPointerException
}
}