// 8/30/2017
// Program to introduce variables.

public class Vars {
  
  public static void main(String[] args)   {
    
       System.out.println( "This is the first line of my pgm." );
       // declare a variable -- announcing that I will be using 
       // such a variable
       // data type followed by an identifier 
       // int is an integer which is a whole number (pos, neg and 0)
       int someValue;
       someValue = 107;  // assignment operator and it means "put 
                         // 107 inside the variable called someValue
       // Must have a variable on the left side of the assignment op
       // 107 = someValue;
  }
}