How to import one function in another function.. function accepts some parameter..
importing the function to pass new values to the function..
abc.jsonnet
local Myfunction2(x,y) = x+y;
test.jsonnet
local Myfunction = import 'abc.jsonnet';
{
res2:Myfunction.Myfunction2(1,2)
}