Java
public class Main {
private String name = "Rand";
private String location = "Kurdistan, Sulaymaniyah";
private String currentFocus = "Learning Every Technology";
private String funFact = "I debug with System.out.println() and I'm not ashamed!";
public void introduce() {
System.out.println("Hello! I'm " + name + " from " + location);
System.out.println("Currently focusing on: " + currentFocus);
System.out.println("Fun fact: " + funFact);
}
}

