error ."cannot find symbol"

I am just starting to learn Java. everytime I try to run this simple print out it says it cannot find symbol. It shows the symbol to be the period. how can this be. This is only 1 line how can it be a problem.

C:\Program Files\Java>jdk1.5.0_06\bin\javac Name.java

Name.java:9: cannot find symbol

symbol : method printin(java.lang.String)

location: class java.io.PrintStream

System.out.printin("Hankins, Randy");

[452 byte] By [eatranmana] at [2007-10-2 11:10:06]
# 1

The error message is telling you that the compiler can not find a method named printin in the java.io.PrintStream class.

Pay close attention to the difference between a lowercase I (the ninth letter of the alphabet) and a lowercase L (the twelveth letter). It should be println not printin.

atmguya at 2007-7-13 3:51:40 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Thank you another rookie error
eatranmana at 2007-7-13 3:51:40 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...