Tag: Dan Levine

  • Finding

    NEW  10 INPUT “WHAT ARE YOU LOOKING TO FIND?”, thing_to_find  20 PRINT “OK, LET’S FIND SOME ”; thing_to_find  30 FETCH ASSUMPTIONS  40 GET type_of_thing FROM all_types_of_things FOR    thing_to_find BASED ON assumptions  50 GET all_resources_available  60 FOREACH resource IN all_resources_available  70 IF resource.type == type_of_thing THEN BREAK  80 NEXT  90 knowledge_biscuit = get_info_from_resource(thing_to_find)  100 IF…