J
jonas2011
Gast
hallo leute heute wollte ich mein erstes programm austesten und als ich auf run gedrückt habe bei eclips kam unten in der console der fehler hier:
mein programm sieht so aus
:
Java:
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
The method printIn(String) is undefined for the type PrintStream
Syntax error, insert ")" to complete Expression
Syntax error, insert ";" to complete BlockStatements
at meinpaket.helloworld.main(helloworld.java:10)
mein programm sieht so aus
Java:
package meinpaket;
public class helloworld {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.printIn ("Hello World"
}
}