Skip to content

Instantly share code, notes, and snippets.

@zoffixznet

zoffixznet/p6.p6 Secret

Last active April 23, 2018 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoffixznet/c3931e94a222526b1fc4babd9290ffa1 to your computer and use it in GitHub Desktop.
Save zoffixznet/c3931e94a222526b1fc4babd9290ffa1 to your computer and use it in GitHub Desktop.
say first-letter "hello";
say last-letter "hello";
say middle-letters "hello";
sub first-letter {
substr $^word, 0, 1
}
sub last-letter {
substr $^word, *-1, 1
}
sub middle-letters {
substr $^word, 1, *-1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment