VACN

75
reputation
8
public class aboutMe {

    //liable to future addings, removals or modifications
    private final String username="VACN";
    private String country="France";
    private int age=new Random().nextInt(13500000000);

    public static void main(String args[]){

        System.out.println("Hi! The name's "+username+"!");
        System.out.println("I'm an amateur game-developer wannabe.");
        System.out.println("I code in JAVA for my own amusement, and plan on learning Python... real soon.")

    }

}