Assignemnt #1 and Hello World

Code

  /// name: Jacob Worthington
/// period: 5
/// Program Name: first program
/// File Name: FirstProg.java
/// Date Finished: 9/2/2015

class FirstProg {

    public static void main(String[] args)  {
    
        System.out.println("I am determined to learn coding.");
        System.out.println("By the way my is Jacob");
    }
}
    

Picture of the output

Assignment 1