Add clarifying comment to new program section

Mark the beginning of the section that prints
the result with a comment.

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
diff --git a/programs/psa/psa_hash.c b/programs/psa/psa_hash.c
index a2e2731..81110f0 100644
--- a/programs/psa/psa_hash.c
+++ b/programs/psa/psa_hash.c
@@ -144,6 +144,7 @@
 
     mbedtls_printf("One-shot hash operation successful!\n\n");
 
+    /* Print out result */
     mbedtls_printf("The SHA-256( '%s' ) is: ", buf);
 
     for (size_t j = 0; j < test_sha256_hash_len; j++) {