Skip to content
#

systems-language

Here are 10 public repositories matching this topic...

jfecher
jfecher commented Mar 26, 2022

String interpolation is the last feature from the old C++ compiler that is still unimplemented in the rust compiler.

Once implemented this feature should desugar strings in the form of "... ${expr} ..." into "... " ++ cast expr : string ++ " ...". This looks like the following in the Ast:

FunctionCall(Variable("++"), vec![
    StringLiteral("... "),
    FunctionCall(Variable("++")
good first issue syntax sugar

Improve this page

Add a description, image, and links to the systems-language topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the systems-language topic, visit your repo's landing page and select "manage topics."

Learn more