I have a simple function like:
private void function(LinkedList<String> a, LinkedList<String> b)
We already know that if those arguments were only string, passing values inline would be easy, like:
function("aaa", "bbb")
But is there a way to pass inline a LinkedList?
I tried with:
function(["A", "B", "C"], ["A", "B"])
but it does not work.