I got an error says that identifier is missing..can anyone please say this for me?
package com.codegym.task.task02.task0202;
/*
Where does a Person come from?
*/
public class Solution {
public static void main(String[] args) {
String person = new Person();
Person = null;
//write your code here
}
public static class Person {
String name;
int age;
int weight;
int money;
//write your code here
}
}