On 15/08/2008, at 4:08 PM, john skaller wrote:
>
>
> All this is a hack. In theory,
>
>       ++x;
>
> should be a procedure
>
>       proc pre_incr: &t -> void;
>
> that is, it should accept a pointer, not a value.

This is now implemented.. you can still write:

        var x = 1;
        ++x;

because now the parser maps ++x to

        pre_incr (&x);

--
john skaller
[EMAIL PROTECTED]





-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to