Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
titleNon-Scalar Values

You cannot insert non-scalar values into a string using the beesting syntax. For non-scalars, use the encode() operator on the value first to turn it into a string.

Warning

Because of a limitation in the parser, you cannot use expressions that contain a right curly brace, }, inside a beesting. The parser simply finds the first right curly brace after the start of the beesting and considers that the end. So, for example, you cannot do this

somevar = <<
This is my first name: #{name{first}}
>>;