![]() |
|
Do you know where your variables are? | |
PerlMonks |
Re(4): Arrow Notation, structs and Perl 6 (Why get() and set() ...)by Ovid (Cardinal) |
on Nov 26, 2003 at 19:16 UTC ( #310353=note: print w/replies, xml ) | Need Help?? |
You seem disappointed that the arrow notation is going away. Personally, I think this is a Good Thing. Aside from the fact that it will mean less typing for common things, it's a holdover from the old days of C. In C, a struct's members could be accessed with dot notation:
However, if you later had passed a pointer to a struct, you would access the struct members with arrow notation: some_point->x = 1.02Since Perl was largely designed to be familiar to C programmers, having an arrow to dereference things seemed fine. However, Perl 6 seemingly is intended to be familiar to a larger audience (in some ways), it makes sense to drop the C style arrow notation in favor of the dot notation that popular languages use. And just to keep things topical, by using the arrow notation, we may be encouraging C programmers to use objects like structs and that's just silly. Which is kind of the point of much of this thread :) Cheers, New address of my CGI Course.
In Section
Meditations
|
|