blob: 3fd2a1dd7850815d9a4042f11f8caa7c5c9ee0ee [file] [log] [blame] [edit]
[
# These lines should all appear
# inside the block
cc_binary(
name = "foo_%s" % lang,
)
for lang in li # list comprehension
for li in foo # nested list comprehension
if lang in langs # condition
if lang # another condition
] # List comprehension ends
[
# These lines should all appear
# inside the block
cc_binary(
# Here's a comment
# about the target
name = "foo_%s" % lang,
), # My binary
] # List ends