> Then one could use the existing Julia syntax for substituting values into > the documentation, like: > > # This is a comment. 1 + 2 = $(1 + 2) >
I don't have a strong opinion on this topic, but I really don't understand why this is better than using directly: @doc "This is a doc string: 1 + 2 = $(1+2)" What is lost when using a string compared to comments?
