Guest User

Untitled

a guest
May 20th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package fr.wildcodeschool;
  2.  
  3. public class Indiana {
  4.  
  5. public static void main(String...args){
  6. String name = "IndianaJones";
  7. Boolean vu = false;
  8. int yearOfOut = 1989;
  9. float rateMovie = 8.3f;
  10.  
  11. System.out.println(name);
  12. System.out.println(vu);
  13. System.out.println(yearOfOut);
  14. System.out.println(rateMovie);
  15.  
  16. SecretSentence.writeSecretSentence("");
  17.  
  18.  
  19. }
  20.  
  21.  
  22. }
Add Comment
Please, Sign In to add comment