cryptol/tests/regression/check06.cry

6 lines
181 B
Plaintext
Raw Normal View History

2014-04-18 02:34:25 +04:00
onetwos = [1] # twoones
twoones = [2] # onetwos
onesytwosy = [ [one, two] | one <- onetwos | two <- twoones ]
check6 = onesytwosy @@ [0 .. 3] == [ [1, 2], [2, 1], [1, 2], [2, 1] ]