cryptol/docs/ProgrammingCryptol/enigma/Finite.cry
2014-04-17 15:34:25 -07:00

14 lines
338 B
Plaintext

/*
* Copyright (c) 2013-2014 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 ...] ]