import java.util.Arrays;
import java.util.List;
/**
* 🚀 **Vikash Kumar - Software Developer** 🚀
*
* Passionate about Problem Solving | Tech Lover
*/
class Vikash {
private final String status;
private final List<String> code;
private final List<String> tools;
private final List<String> interests;
public Vikash() {
this.status = "💻 Software Developer";
this.code = Arrays.asList("☕ Java", "🔥 C++", "🐍 Python", "🌐 JavaScript", "🛢 MySQL");
this.tools = Arrays.asList("Html","CSS","Bootstrap","tailwindCSS", "⚛ React", "🌿 Node.js", "🎛 Redux", "🚀 Express.js", "📦 MongoDB");
this.interests = Arrays.asList("🧠 Problem Solving", "♟ Games");
}
public void displayInfo() {
System.out.println("💻 Status: " + status);
System.out.println("🖥️ Coding Languages: " + code);
System.out.println("🛠 Tools: " + tools);
System.out.println("🎯 Interests: " + interests);
}
public static void main(String[] args) {
Vikash me = new Vikash();
me.displayInfo();
}
}

You can also follow me on Github :)



