Hello,
I'm trying to simply modify some Hello World code, so that the user can input their name and it says "Hello <name>"...
Below is what I've written so far...
I'm using BlueJ and I have tried the 'Scanner' but for some reason it doesn't work with BlueJCode:class prog
{
public static void main(String name)
{
System.out.println("Hello" + name);
}
}
