Pulp string concate

Hi, just wanted to let you guys know that string concatenation is actually possible through a workaround.

The following will give an error that string concatenation is not supported in Pulp.

yourString = "This is the first part of the string\n"
yourString += "This is the second part of the string\n"

Workaround:

yourString = "This is the first part of the string\n"
yourString = "{yourString}This is the second part of the string\n"
1 Like