3e6 @verb #7165:"@todo" any any any rdo #7165 @program #7165:"@todo" any any any "Usage: @todo " "Add to your list of things to do." "Note that this is also very handy for jotting down any miscellaneous notes (phone numbers, addresses, etc) when you don't have paper at your terminal." "" "Ex: @todo Add multiple page-echoes to SSPC" " @todo Stop by the store and buy fresh tofu." "" "Usage: @todo" "List everything in your to-do list." "" "See `@done' for removing things from your to-do list." if (!args) if (todo = player.todo_list) player:tell("- Things not yet done:") for x in [1..length(todo)] player:tell(" ", x, " - ", todo[x]) endfor player:tell("- End of list.") else player:tell("Everything seems to be done.") endif else player.todo_list = setadd(player.todo_list, argstr) player:tell("Added \"", argstr, "\" to your @todo list.") endif "Last modified by manta (#7165) on Sat Jul 11 12:35:14 1998 EDT." . 0