
import universe.milky_way.earth.india.delhi;
public class Ayush {
private String name = "Ayush";
private String[] code = {"Python","Java", "JavaScript", "C",};
private String[] framework = {"Django", "React","numpy","pandas"};
private String[] tools = {"Vscode", "Pycharm"};
private String[] lookingToGetStartedWith = {"Web3"};
private String[] askMeAbout = {"Web Development","Data Structures and Algorthims","Machine Learning"};
public static void main(String[] args) {
Ayush Ayush = new Ayush();
System.out.println("π Hey there! I'm " + Ayush.name);
System.out.println("π Pronouns: " + String.join("|",Ayush.pronouns);
System.out.println("π‘οΈ I work with languages like " + String.join(", ", Ayush.code));
System.out.println("π Currently diving into " + String.join(", ", Ayush.lookingToGetStartedWith));
System.out.println("π¬ Ask me about " + String.join(", ", Ayush.askMeAbout));
System.out.println("π Based in " + Delhi.getCity());
}
}





