Automatic Placeholder conversion in String
wysohn opened this issue ยท 3 comments
For example, "force $playername 5" will be automatically translate into "force "+$playername+" 5" by the lexer.
This is impossible due to the nature of how the string is processed.
in string, it's hard to tell the end of placeholder as there is no indication of what would end character or normal character. If we decide to add the specific end character to denote the end of placeholder, it conflicts with the very first reason why we need this: newcomers put placeholder inside the string, not put it outside and append it to the string.