Files

9 lines
142 B
Java

class X {
String string() {
return "heavy" + "⚡️" + "metal";
}
String x() {
return "🤘" + string<caret>() + "🤘";
}
}