blob: 9c5dce89a4acdadf5c8e73c15ce6e1368deaa652 [file] [log] [blame]
public class pr8945
{
public static void main(String[] args)
{
String foo = "hello";
int pos = 3;
System.out.println(foo.substring(pos,++pos));
}
}