advictoriam

Untitled

Jan 8th, 2019
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. /**
  2.    A program to print three lines of a Robert Frost poem
  3. */
  4.  
  5. public class Frost
  6. {
  7.    public static void main(String[] args)
  8.    {
  9.       System.out.println("      Two roads diverged in a wood, and I --");
  10.       System.out.println("I took the one less traveled by,");
  11.       System.out.println("And that has made all the difference.");
  12.       System.out.println("    by Robert Frost");
  13.    }
  14. }
Add Comment
Please, Sign In to add comment