New to the java programming language and confused how to run this code! I am using Eclipse.
public static String random(String n)
{
int F = n.length();
if(F <= 1) return n;
String b = n.substring(0, F/2);
String c = n.substring(F/2, F);
return random(c) + random(b);
}
I am new to running java programs in the terminal window and I can't seem to figure out how to get the return value.