Created
April 1, 2019 21:51
-
-
Save isauravmanitripathi/443f9b98da8b61b9635abc6386b8048e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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