tree-sitter / tree-sitter-julia

Julia grammar for Tree-sitter
MIT License
93 stars 31 forks source link

Command interpolations #123

Open savq opened 8 months ago

savq commented 8 months ago

Currently command interpolations are parsed the same as string interpolations. However, these allow many more expressions. For example:

run(`echo $'\a'`)      # Char interpolation
run(`echo $[1, 2, 3]`) # Array interpolation