Unlike what I mentioned in my previous post, I ended up trying Boo first. I will delve on the reason in another post. The objective of this post is to document the problems I had getting used to Boo syntax. None of the problems were big, just some missing punctuations 🙂 And I did not face any issues with the significant space.
Empty array vs. Empty list
An empty list is
[]
and an empty map is
{}
And empty array is
(,)
as it would cause ambiguity with a function / closure.