Some of the esoteric syntax choices are a bit strange; for example, a function with a list argument would be

  [[myfunc]](< 2, 3, 4>)
If you're having symbols, why not just use python syntax there?

  myfunc([2, 3, 4])

It's like English... But with worse sigils than Python...

[dead]