Skip to content

Instantly share code, notes, and snippets.

@MP-C
Created June 4, 2022 16:01
Show Gist options
  • Save MP-C/2ae6fc8a743e356515f169d5da1dafd7 to your computer and use it in GitHub Desktop.
Save MP-C/2ae6fc8a743e356515f169d5da1dafd7 to your computer and use it in GitHub Desktop.
03 Variables Java Film
public class Varibles {
public static void main(String[] args) {
String title = "Indiana Jones and the Last Crusade";
System.out.println("title :");
System.out.println(title);
boolean disISeeTheMovie = true;
System.out.println("disISeeTheMovie :");
System.out.println(disISeeTheMovie);
int year = 1989;
System.out.println("year :");
System.out.println(year);
double IMDB = 8.2;
System.out.println("IMDB :");
System.out.println(IMDB);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment