Question about the let statement

2022-12-26 Thread MandelnOhneSalz
Thanks, that sounds reasonable.

Question about the let statement

2022-12-26 Thread MandelnOhneSalz
As I understand the let keyword introduces an immutable variable, so you can't change it after initialization. So for example let x = @[1,2,3] x[0] = 5 Run wouldn't work. Yesterday I discovered the library neo, which can be used to create matrices and vectors. B