You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Concept age = getAge(concept);
public Concept getAge(Concept concept) {
Date now;
Date birth = concept.get("birth");
int age = now.year - concept.year;
return new Primitive(age);
}
The text was updated successfully, but these errors were encountered:
Age = How many years after date of birth
The text was updated successfully, but these errors were encountered: