Assignment #16 and Still Using Variables

Code

    /// Name: Luke Shin
    /// Period: 7
    /// Program Name: Still Using Variables
    /// File Name: StillUsingVariables
    /// Date Finished: 9/20/2015

    public class StillUsingVariables {
        public static void main( String[] args ) {
            String myName, myYear;
        
            myName = "Luke Shin";
            myYear = "2016";
        
            System.out.println( "My name is " + myName + " and I'll graduate in " + myYear + ".");
        
        }
    }
    

Picture of the output

Assignment 16