aarushgupta's picture
Deploy FATHOM-DM Space bundle
2803d7e verified
raw
history blame contribute delete
465 Bytes
type answer : t {
predicates {
correct(answer, npc);
solved(answer);
}
inform7 {
type {
kind :: "answer-like";
definition :: "answer-like is a kind of thing. answer-like is privately-named. A answer-like can be solved. A answer-like is usually not solved.";
}
predicates {
correct(answer, npc) :: "";
solved(answer) :: "The {answer} is solved";
}
}
}