Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
VinaySiddha authored May 24, 2024
1 parent 7eb074e commit 8525ce8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Outer.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package internal;

class Outer {
static int data = 59;
static class inner{
void show() {
System.err.println("data" +data);
}
}
public static void main(String args[]) {
Outer.inner o = new Outer.inner();
o.show();
}

}

0 comments on commit 8525ce8

Please sign in to comment.