Implemented array types in my toy language's new IR-based Aarch64 compiler! Arrays (fixed-size only) are first-class value types, can be passed to/from functions, copied, etc, and generally behave similarly to structs.
I think that's about it feature-wise of what I wanted to add to the language in this iteration. Probably gonna try implementing something substantial in it later to see if it feels the way I wanted it to (and fix a ton of inevitable bugs in the compiler)
