The hello world program has few bugs:
- It does not print "hello world"
- The app crashes immediately after printing.
Screenshot:

Code I believe is responsible for this:
public static void main(String []args) throws Exception {
System.out.println("Hello");
throw new Exception("CRASHING APP!");
}
The hello world program has few bugs:
Screenshot:
Code I believe is responsible for this: