Guest User

Untitled

a guest
Nov 21st, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. /*
  2.    Programmer:  Brandon Domangue
  3.    Filename:  myFavThings.java
  4.    Date:  9/10/2012
  5.    Description:  Prints my name, my favorite book and my favorite movie on separate lines.
  6. */
  7.  
  8. public class myFavThings {
  9.     public static void main(String[] args) {
  10.         System.out.println("My name is Brandon Domangue,");
  11.         System.out.println("my favorite book is Atlas Shrugged,");
  12.         System.out.println("and my favorite movie is Pan's Labyrinth.");
  13.     }
  14. }
Add Comment
Please, Sign In to add comment