blob: e4526e852d0a32acc3503ff4cdcfb230d1f6c4aa [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