Skip to content

Instantly share code, notes, and snippets.

@jonahlyn
Created August 1, 2012 22:31
Show Gist options
  • Save jonahlyn/3231283 to your computer and use it in GitHub Desktop.
Save jonahlyn/3231283 to your computer and use it in GitHub Desktop.
Groovy SimpleTemplateEngine Example
import groovy.text.SimpleTemplateEngine
def text = '''Hello $name,
This is a mult-line string.'''
def binding = [name: "Jonahlyn"]
def engine = new SimpleTemplateEngine()
template = engine.createTemplate(text).make(binding)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment