qdbplang / qdbp

MIT License
50 stars 1 forks source link

Same return for multiple variants #55

Closed dghosef closed 1 week ago

dghosef commented 1 week ago

Should be able to do

Shape
    Circle?
    Square?
        [width | width].

and should compile down to

Shape
    Circle?
        [width | width]
    Square?
        [width | width].