This is the mail archive of the guile@sources.redhat.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Another CTAX syntax RFC


Just some opinions:

Ian Bicking <ianb@colorstudy.com> writes:

>   struct point {
>     int x;
>     int y;
>   }

I hope this will become

struct point {
  x;
  y;
};

> And then:
> 
>   struct point foo;

In my opinion, this indicates that `foo' is of type struct foo, which
is wrong, so

  var foo = new point;

is probably better.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]