blob: d87f1e01a098b459927dd671949f7cd24ebd1ed3 [file] [log] [blame]
cue eval listcomp.cue
cmp stdout expect-stdout-cue
-- frontmatter.toml --
title = "List Comprehensions"
description = ""
-- text.md --
Lists can be created with list comprehensions.
The example shows the use of `for` loops and `if` guards.
-- listcomp.cue --
[ x*x for x in items if x rem 2 == 0]
items: [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ]
-- expect-stdout-cue --
[4, 16, 36, 64]