Skip to content

Instantly share code, notes, and snippets.

@JeromeBATAILLE
Last active October 31, 2018 12:29
Show Gist options
  • Save JeromeBATAILLE/fe65165258b1151f532375e914439438 to your computer and use it in GitHub Desktop.
Save JeromeBATAILLE/fe65165258b1151f532375e914439438 to your computer and use it in GitHub Desktop.
Les varieables en java
public class lesVariablesEnJava {
public static void main(String[] args) {
String movyName = "Indiana Jones and the Last Crusade";
boolean seenMovy = true;
int yearRelease = 1989;
float rate = 8.3f;
System.out.println(movyName);
System.out.println(seenMovy);
System.out.println(yearRelease);
System.out.println(rate);
}
}f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment