Hi, i have just installed a java compiler and wrote my first java program, copied directly from a java book. Unfortunately it found errors in one of my lines and more precisely didn't like the full stops.
public class FirstVar
{
public static void main(String[] args)
{
String str = "First value";
System.out.printIn(str);
str = "Second Value";
System.out.printIn(str);
}
}
why won't it work for me??
Thanks