fork download
  1. // How to truncate a string in groovy?
  2. // https://stackoverflow.com/a/15713996
  3. def name = "shopify"
  4. println name.take(1).toUpperCase();
Success #stdin #stdout 2.38s 136408KB
stdin
Standard input is empty
stdout
S