pnewhook
unread,Nov 27, 2009, 11:44:06 PM11/27/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Persevere
This has been bugging me for a while and I thought I'd bring it up.
Page three of the hello world example on the site states that after
changing the hello function from being a method to a static function
you shouldn't be able to call hello on the object, d in the example.
However, I can still call d.hello(). If i change the method, d.hello
(); doesn't update but Data.hello() does.
Not a huge deal, just a little confusing for beginners.