!7 concept Word { S text; long lastUsed; } p { db(); botSleep("Word Holder."); } answer { if "list words" ret struct(wordsByLastUse()); } static L wordsByLastUse() { ret collect(sortByFieldDesc(list(Word), "lastUsed"), "text"); }