boltlang / Bolt

A programming language for rapid application development
35 stars 1 forks source link

Add support for shorthand operator declarations #57

Open samvv opened 7 months ago

samvv commented 7 months ago

Infix and N-ary operator already done in commit 9f5de29. Prefix and suffix operators remain.

The following works:

let a + b = ...
let (<>) a b = ...
samvv commented 6 months ago

This is waiting for #63 to complete.