#!/usr/bin/env node

/**
 * Bud file for code.
 * Executing this file renders code resources.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{ pkg.name }}.
 *
 * @see https://github.com/coz-repo/coz
 */

'use strict'

const apemanBudCode = require('apeman-bud-code')

module.exports = apemanBudCode({
  // Name of codes to render.
  name: [
{{#each params.name}}    '{{{this}}}'{{#if @last}}{{else}},{{/if}}
{{/each}}
  ]
})

{{{read _render}}}
