Guest User

Untitled

a guest
Dec 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class chall {
  2. public static void main(String[] args) {
  3.  
  4. String title = "Indiana Jones and the Last Crusade";
  5. boolean watched = false;
  6. int year = 1989;
  7. float rated = 8.9f;
  8.  
  9. System.out.println(title);
  10. System.out.println(watched);
  11. System.out.println(year);
  12. System.out.println(rated);
  13. }
  14. }
Add Comment
Please, Sign In to add comment