Search Results

1
vote

Can you do LINQ-like queries in a language like Python or Boo?

Boo supports list generator expressions using the same syntax as python. For more information on that, check out the Boo documentation on …
4
votes

Defining operators in Boo

While Boo supports operator overloading by defining the appropriate static operator function (op_addition), and also supports syntactic macros, it does not support creating custom oper …