Skip to content

Instantly share code, notes, and snippets.

@wilderwith
Created October 22, 2019 22:47
Show Gist options
  • Save wilderwith/e1817a8a35c2e02fac38f325d1aa708b to your computer and use it in GitHub Desktop.
Save wilderwith/e1817a8a35c2e02fac38f325d1aa708b to your computer and use it in GitHub Desktop.
Quete java 3
public class Quetejva {
public static void main(String[] arg){
String title = "Indiana Jones and the Last Crusade";
boolean vu = false;
int dateDeRealisation = 1989;
float note = 8.2f;
System.out.println(title);
System.out.println(vu);
System.out.println(dateDeRealisation);
System.out.println(note);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment