Split string by whitespace

I’m trying to split “Foo Bar Baz” string by whitespace and then get it’s elements. The module is below. The processing result it still “Foo Bar Baz”. What am I doing wrong? Must be something obvious.

It looks like the function is missing {{space}} as the separator. Right after the first semicolon (inside the split() function)

3 Likes

Thank you. Still learning Make syntax