// Variable Example int someint; // Datatype integer, whole number, positive or negative. Declaration someint = 1; // Assign the value of 1 to it. println(someint); // Print it out on a line. someint = 1 + 1; // Assign the value of 1 + 1, the right hand side gets evaluated first. println(someint);