I've started to play with the Tanka and can't find anywhere the answer to the question:
What is difference between
(import "my.jsonnet")
and
import "my.jsonnet"
and why the following construction is valid:
(import "my.jsonnet") + (import "my1.jsonnet")
but this one isn't:
import "my.jsonnet" + import "my1.jsonnet"
What role do the parentheses play here?