public class RochelleExample
{
public static void main(String args[])
{
// RochelleExample
String name = new String("Rochelle");
System.out.println("Hello, my name is " + name);
}
}
Hello, my name is Rochelle
--- Output Ends ---
- javac RochelleExample.java
- java RochelleExample