// How to truncate a string in groovy?
// https://stackoverflow.com/a/15713996
def name = "shopify"
println name.take(1).toUpperCase();