A# (A-Sharp)
So it’s a supposed hobby project developed by me.
A# is an open-source modern math-first .NET programming language, aimed to make heavy math on the framework much easier.
It’s a pretty lightweight compared to Julia or even Python (for now at least).
A# is statically typed and converts to CIL (Common Intermediate Language).
2. Why A#?
A# removes the verbosity of C#, making it easier to develop and calculate things.
C#:
double result = Math.Sqrt(Math.Max(a, b));
A#:
let result = _(+#(a, b)),
If you’re interested, or want to help, here is the link to the repo
