Skip to content

Instantly share code, notes, and snippets.

@Altreus
Created January 26, 2019 17:15
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 Altreus/144c114d3e1a810f9da0aa4456562762 to your computer and use it in GitHub Desktop.
Save Altreus/144c114d3e1a810f9da0aa4456562762 to your computer and use it in GitHub Desktop.
wtf
> my @role-ids = 537710338498363393;
[537710338498363393]
> say 537710338498363393 ~~ @role-ids;
False
> say @role-ids ~~ 537710338498363393;
False
> say @role-ids ~~ "537710338498363393";
True
> say "537710338498363393" ~~ @role-ids;
False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment