public static void main(String[] args) {
//write your code here
Person Person = new Person();
}
public static class Person {
//write your code here
String name;
int age;
int weight;
int money;
}
}
package com.codegym.task.task02.task0202;
/*
Where does a Person come from?
*/
public class Solution {
public static void main(String[] args) {
//write your code here
Person Person = new Person();
}
public static class Person {
//write your code here
String name;
int age;
int weight;
int money;
}
}