Skip to content

Instantly share code, notes, and snippets.

@mascarenhas
Created October 22, 2009 21:25
Show Gist options
  • Save mascarenhas/216350 to your computer and use it in GitHub Desktop.
Save mascarenhas/216350 to your computer and use it in GitHub Desktop.
template = "$cards[[$if{show}[[$rank of $suit, ]]]]"
view = {
{ rank = "Ace", suit = "Spades", show = true },
{ rank = "5", suit = "Clubs" },
{ rank = "10", suit = "Hearts", show = true },
}
result = cosmo.fill(template, { cards = view })
print(result) -- Ace of Spades, 10 of Hearts,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment