7 lines
123 B
Text
7 lines
123 B
Text
# Project: SHA-256
|
|
|
|
load "stdlib.ring"
|
|
str = "Rosetta code"
|
|
see "String: " + str + nl
|
|
see "SHA-256: "
|
|
see sha256(str) + nl
|