Returns the left n characters of "string"
"string" - the string to get the characters from.
n - number of characters to grab
A scalar string.
println(left("abcde", 3));
abc