You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not a big deal, but the part in the docs that says that =~ is an alias for match confused me, since they actually swap arguments: match pattern target vs target =~ pattern. You can try this out: [("send" =~ "s"), (match "s" "send")] to confirm.
Not a big deal, but the part in the docs that says that =~ is an alias for match confused me, since they actually swap arguments:
match pattern targetvstarget =~ pattern. You can try this out:[("send" =~ "s"), (match "s" "send")]to confirm.