Advertisement
Guest User

Untitled

a guest
Nov 29th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. package com.kademika;
  2.  
  3. public class first {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. System.out.println("heeey");
  8. System.out.println("little" + "bird" + "kiwi" + 23);
  9. System.out.println("little" + " bird" + " kiwi" + " " + 23);
  10. System.out.println(" ");
  11. System.out.print(1 + 2 + 3);
  12. System.out.print(144);
  13.  
  14.  
  15.  
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement