import Random.SoftwareEngineer;
class JustAnotherCSGrad
{
String name, isA, job;
JustAnotherCSGrad()
{
this.name = "Prateekshya";
this.isA = "Software Engineer";
this.job = "exploring";
}
public String toString()
{
return this.name+"("+this.isA+") is "+this.job+" ...";
}
void sayHello()
{
System.out.println("Hello, world! 👋");
}
}
class Me
{
public static void main(String[] args)
{
JustAnotherCSGrad me = new JustAnotherCSGrad();
me.sayHello();
System.out.println(me.toString());
}
}
👶Early 2000's kid
🎹Sometimes Musical
🤔Partially Introvert
💻Speaking Java
⚡Fun fact: Five Problems, One Solution, Java
💻List of Projects: check
😄Thanks for visiting