This website works better with JavaScript.
Home
Explore
Help
Sign In
korndoerferpi67188
/
ChareSWE
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Person commit
master
Danial Eshete
6 years ago
parent
567ced3feb
commit
a8cfd4fd56
1 changed files
with
16 additions
and
0 deletions
Unified View
Show Diff Stats
16
0
src/Person.java
+ 16
- 0
src/Person.java
View File
public class Person {
public String name;
public String vname;
public int age;
Person(String name, String vname, int age){
this.name = name;
this.vname = vname;
this.age = age;
}
}
Write
Preview
Loading…
Cancel
Save