It feels a bit like "cheating" that new x-string features are built-in only. It would be cool to be able to do:
    from foo import bar
    bar"zoop" replies(7): 
    from foo import bar
    bar"zoop"    import std/strformat
    let world = "planet"
    echo &"hello {world}"
In general, with user-defined operators and templates and macros, Nim has all kinds of Lisp-like facilities to extend the language, but with a more static focus which helps for both correctness and performance.