Hi i've compile this java project. This is my first project of hello world but when i try to run it on cmd i have this error. Can you help me?
This is my code:
public class CiaoMondo {
public static void main(String[] args)
{
// Prints "Hello, World" to the terminal window.
System.out.println("Hello, World");
}
}