Hello! I'm discovering Lil and setting myself some little challenges. While I'm used to a lot of other languages, I'm wondering if there is a simple way to declare lists of lists.
My intuition would be
(0,1), (2, 3)
but this actually is the same as (0, 1, 2, 3). I guess that while () is the empty list, parenthesis aren't lists delimiters as [] in other languages. I understand that comma is the concatenator for lists and that the correct solution to my problem would be
(list 0 1), (list 2,3)
but I'm wondering if there's a more elegant solution.
Thank you!