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
From what I gathered, it seems to be something specific to explicit sigils:
iex>"~s/\\a/"|>Code.string_to_quoted!()|>Macro.to_string"~s/\\\\a/"# This has two \\ added and isn't equivalent to the original inputiex>~s/"\\a"/|>Code.string_to_quoted!()|>Macro.to_string"\"\\a\""# This yields an equivalent string to the original input