Update exercises12.md

This commit is contained in:
Bogumił Kamiński 2023-05-06 21:36:24 +02:00 committed by GitHub
parent b710e84f7c
commit ae83ee9d03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ using Downloads
using SHA
Downloads.download("https://go.dev/dl/go1.19.2.src.tar.gz", "go.tar.gz")
shavec = open(sha256, "go.tar.gz")
shastr = join(string.(s; base=16, pad=2))
shastr = join(string.(shavec; base=16, pad=2))
sha == shastr
```