Skip to content

Instantly share code, notes, and snippets.

@Morzanne
Last active May 9, 2019 10:39
Show Gist options
  • Save Morzanne/3caa254cc353c331ecdb7fd63e17525c to your computer and use it in GitHub Desktop.
Save Morzanne/3caa254cc353c331ecdb7fd63e17525c to your computer and use it in GitHub Desktop.
public class LastCrusade{
public static void main(String[] args) {
String movieName = "Indiana Jones and the Last Crusade";
boolean haveSeenMovie = true;
int date = 1989;
float imdbScore = 8.2f;
System.out.println(movieName+"\n"+haveSeenMovie+"\n"+date+"\n"+imdbScore);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment