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
I also noticed that the string { {} } does not parse in full-moon in the latest version:
unexpected double brace for interpolated string. try \\{ if you meant to escape
But for better or worse it is supported.
Other test cases:
local_=`{{ }}` -- errlocal_=`{{hello}}` -- errlocal_=`{ {}}` -- oklocal_=`{--[[]]{}}` -- oklocal_=`\{{true}` -- oklocal_=`{ {true}}` -- oklocal_=`{ {hello}}` -- err? I don't think I understand why this one errors but not the previous one thoughlocal_=`\{{hello}}` -- ok
The text was updated successfully, but these errors were encountered:
I also noticed that the string
{ {} }
does not parse in full-moon in the latest version:But for better or worse it is supported.
Other test cases:
The text was updated successfully, but these errors were encountered: