Now, since *I'm* the one writing this LISP, I do get to make some changes. The main thing I wanted to change, as it's the #1 thing that infuriates me writing LISP, is parentheses. This "LISP" has a syntax where each line (as separated by newlines or commas) implicitly has () around it. Meanwhile, {} and [] are shorthand, for
{x,y,z} => '((x)(y)(z))
[x,y,z] => (make-array [(x),(y),(z)])
In other words {} is functions (quoted lists) and [] is array literals.
Is this still a LISP? I don't care!