cryptol/docs/ProgrammingCryptol/enigma/Finite.cry
2018-07-26 09:08:32 -07:00

14 lines
338 B
Plaintext

/*
* Copyright (c) 2013-2018 Galois, Inc.
* Distributed under the terms of the BSD3 license (see LICENSE file)
*/
xs = [ 1 .. 100 ]
sumInf xs = iterSums
where
sums = [ 0 ] # [ x + y | x <- xs
| y <- sums ]
iterSums = [ x + y | x <- sums
| y <- [ 1 ...] ]