Hi I have a simple list like this:
List x=["a","b","c","d","e"];
and I would like to check when I print x.sublist(1,10) => it will get "invalid" string result and when I print x.sublist(1,2) =>it will get "valid" string result. Is there a way to do that ?
You could write a function to test that:
Hope this helps.