!7 module TestMySignature > DynSingleFunctionWithPrintLog { void doIt { S signed = signWithComputerIDAndDate("Here is a random text. " + randomID()); print(signed); S author = getAuthorOfSignedText(signed); print(); if (eq(author, computerID())) infoBox("Signature Test OK!!"); else infoBox("Signature couldn't be verified... :("); } }