Skip to content

Instantly share code, notes, and snippets.

@loloof64
Created April 4, 2018 15:25
Show Gist options
  • Save loloof64/b900a23748c349c7797d90760579424b to your computer and use it in GitHub Desktop.
Save loloof64/b900a23748c349c7797d90760579424b to your computer and use it in GitHub Desktop.
WilderJones
public class Main {
public static void main(String[] args) {
String filmNameVO = "Indiana Jones and the Last Crusade";
boolean haveISeenThisFilm = true;
int releaseYearInBoxOffice = 1989;
float filmAverageRating = 8.3f;
System.out.println("Film name in VO: "+filmNameVO);
System.out.println("Have I seen this film ? "+haveISeenThisFilm);
System.out.println("Film release year in Box Office : "+releaseYearInBoxOffice);
System.out.println("Film average rating : "+filmAverageRating);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment