Skip to content

Instantly share code, notes, and snippets.

@isauravmanitripathi
Created April 1, 2019 21:51
Show Gist options
  • Save isauravmanitripathi/443f9b98da8b61b9635abc6386b8048e to your computer and use it in GitHub Desktop.
Save isauravmanitripathi/443f9b98da8b61b9635abc6386b8048e to your computer and use it in GitHub Desktop.
public class variables {
public static void main(String [] arguments) {
final char UP = 'U';
byte initialLevel = 12;
short Location = 13250;
int score = 3423842;
boolean newGame = true;
System.out.println("Level: " + initialLevel);
System.out.println("up: " + UP);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment