blob: 9cf0cf2d2222f8958d06a4519e00e211a12c9da4 [file] [log] [blame]
public class X {
void f(boolean isMale) {
String title;
if (isMale) {
title = "Mr.";
} else {
title = "Ms.";
}
System.out.println("title = " + title);
}
}