Commit 700e85c5 authored by Pouria Shirzad's avatar Pouria Shirzad

Delete person.java

parent ddd6797c
Pipeline #5819 failed with stages
package com.company;
public class person {
public person(String personName , int howOld){
name = personName;
age = howOld;
}
public static void main(String arg[]){
person ali = new person("Ali" , 18);
System.out.println(ali.name + " is the name and his age is :" + ali.age);
}
private String name;
private int age;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment