MCPcopy Create free account
hub / github.com/Manvityagi/PW-Skills-Java-Course-Codes / Person

Class Person

Lecture 11 OOPs/src/Person.java:1–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1public class Person {
2 int age = 20;
3
4 public static void main(String[] args) {
5 Person Rohan = new Person();
6 System.out.println(Rohan.age);
7 }
8}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected