Example features:
- Const assignment shorthand
user := getUser()
---
const user = getUser()
- Parens optional and braceless nesting if x > 0
return
---
if (x > 0) {
return
}
- &fn shorthand nums.map &+1
---
nums.map($=>$+1)
And a heck-ton more: https://github.com/DanielXMoore/CivetA big milestone today: v0.4.20, parser hit 5kloc, and >666 tests.
Please share your thoughts, feelings, hopes, and dreams. Thank you for coming to my Ted Talk.