!7 cmodule AgiBlueTrustedBot > DynSingleFunctionWithPrintLog { transient PKIKeyPair keys, newKeys; S botDescription = "Trusted Test Bot"; void doIt { keys = agiBot_trustedKeyForMachine(); if (keys != null) { print("Have trusted keys! TODO: test if they still work."); } else { newKeys = keyPairForProgram(); print("Posting trust request."); agiBot_postTrustRequest(newKeys, botDescription); } } }