shithub: mc

ref: 7680e160787aad4408be9535856f4c3a2ba72337
dir: /libcryptohash/test/printhash.myr/

View raw version
use std

pkg =
	const print	: (b : byte[:] -> void)
;;

const print = {b
	for x in b
		std.put("%02xb", x)
	;;
        std.put("\n")
}