!7 cmodule2 QuestionTripleTest > DynPrintLog { switchable S multiBotModule; switchable long mainPostID; transient GazellePost mainPost; transient GazellePost variation; start-thread { mainPost = importPost(dm_call(multiBotModule, "getPost", mainPostID)); print(+mainPost); variation = importPost(first((L) dm_call(multiBotModule, "repliesWithTag", mainPost.importedFrom, "variation of"))); print(+variation); } GazellePost importPost(O post) { if (post == null) null; GazellePost p = cast quickImport(post); p.importedFrom = post; ret p; } }