Advertisement
ArturCzopek

java-03-special-02

May 7th, 2017
1,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. String titleHi = "Title: \"Hi\"";
  2. String multipleLine = "Two\nlines";
  3.  
  4. System.out.println(titleHi);            // Title: "Hi"
  5. System.out.println(multipleLine);       // Two
  6.                                         // lines
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement