I'm a currently studying to be a Software Engineer. Right now i'm learning Java. My dream is to live a peacefull life working in tech.
I like reading, listening to music, and drinking matcha ๐.
"sometimes we all need to "sudo pacman -Syu"
public class readme {
public String name;
public String[] hobbies;
public boolean happy;
private String location;
public readme() {
this.name = "Carlos";
this.hobbies = new String[]{"Coding", "Reading", "Writing", "Music", "Hang out"};
this.happy = true;
this.location = "Chihuahua, Mx.";
}
public void currentlyDoing() {
System.out.println("Right now, im either with someone I love, or being a Mr Robot and doing some code.");
}
}