Skip to content

Instantly share code, notes, and snippets.

@jarhoads
Last active November 14, 2016 17:41
Show Gist options
  • Save jarhoads/62fe224f9aa4db765f48f63235ed8623 to your computer and use it in GitHub Desktop.
Save jarhoads/62fe224f9aa4db765f48f63235ed8623 to your computer and use it in GitHub Desktop.
t1 = unique("abc")
call test t1 "abc"
t2 = unique("abbc")
call test t2 "abbc"
exit 0
test:
parse arg test_val test_string
if test_val then say 'this string contains unique characters:' test_string
else say 'this string does not contain unique values:' test_string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment