BigEd / atalan

Automatically exported from code.google.com/p/atalan
MIT License
1 stars 0 forks source link

Argument default value #54

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Possibility to define default value of procedure or macro argument.

There is possible conflict with procedure assignment.

inc:macro x:byte by:byte=1 = 
    x = x + by

In this case, we would need to use ().

inc:macro(x:byte by:byte=1) = 
    x = x + by

Original issue reported on code.google.com by rudla.ku...@gmail.com on 20 Jan 2011 at 2:02

GoogleCodeExporter commented 9 years ago

Original comment by rudla.ku...@gmail.com on 27 Feb 2011 at 7:53