//Lab1P8.java - this is a runtime error. You have to run it //to see the error. Then fix the code. public class Lab1P8 { public static void main (String[] args) { String myString = null; System.out.println( "myString is:" + myString.toString() ); } }