New at java. 1 compiling error

When i try to run this code...

class echoline

{

public static void main(String args[])

{

System.out.println(DummiesIO.getline());

}

}

it comes up with this error...

echoline.java:5:cannot find symbol

symbol : variable DummiesIO

location : class echoline

System.out.println(DummiesIO.getline());

help plz

[402 byte] By [number00100a] at [2007-10-2 10:17:00]
# 1
Make sure that echoline.java is in the same directory as (either or both) DummiesIO.java or DummiesIO.class.The above assumes that neither of the classes have a first line that starts "package . . ."
ChuckBinga at 2007-7-13 1:42:48 > top of Java-index,Developer Tools,Java Compiler...