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
Copy file name to clipboardexpand all lines: NEWS.md
+8
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,14 @@ Language changes
24
24
This can be changed back to the original color by setting the environment variable `JULIA_INFO_COLOR` to `"blue"`.
25
25
One way of doing this is by adding `ENV["JULIA_INFO_COLOR"] = :blue` to the `.juliarc.jl` file.
26
26
For more information regarding customizing colors in the REPL, see this [manual section](http://docs.julialang.org/en/latest/manual/interacting-with-julia/#customizing-colors).
27
+
* Multiline and singleline command macros have been added. A command macro is
28
+
like a string macro, but the syntax uses backquotes (<code>`</code>)
29
+
instead of double quotes, and the resulting macro called is suffixed with
30
+
`_cmd`. For instance, the syntax <code>q`xyz`</code> is equivalent to
31
+
`@q_cmd "xyz"`.
32
+
* String and command macros can now be qualified with their module. For
33
+
instance, `Base.r"x"` is now parsed as `Base.@r_str "x"`. Previously, this
0 commit comments