fork download
  1. a={it.each{printf("%02d",it-96)}}
  2. a("abcdefghijklmnopqrstuvwxyz".chars)
  3.  
  4. println "\nhelloworld - yields:"
  5. a("helloworld".chars)
  6.  
  7. println "\ncodegolf - yields:"
  8. a("codegolf".chars)
  9.  
Success #stdin #stdout 0.56s 332864KB
stdin
Standard input is empty
stdout
0102030405060708091011121314151617181920212223242526
helloworld - yields:
08051212152315181204
codegolf - yields:
0315040507151206