Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
313 B
3
Indexable
Never
public class LoveMessage {
    public static void main(String[] args) {
        String girlfriendName = "CHEZCA";
        String message = "You are the most beautiful person I know, and I'm grateful to have you in my life. I love you, " + girlfriendName + "!";
        System.out.println(message);
    }
}