Skip to content

Instantly share code, notes, and snippets.

@MrRahulR
Created May 25, 2021 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrRahulR/8b3fa071cde91bd26c896ca7540e97db to your computer and use it in GitHub Desktop.
Save MrRahulR/8b3fa071cde91bd26c896ca7540e97db to your computer and use it in GitHub Desktop.
TypeDemo.java
public class TypeDemo {
int a = 20; // instance variable
static String color = "blue"; // static variable
void method() {
int x = 30; // local variable
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment