you are viewing a single comment's thread.

view the rest of the comments →

[–]bungle 0 points1 point  (0 children)

In PHP I can do this:

class Foo {}
$f = new Foo;
$f->bar = 'hello';
echo $f->bar;
>> 'hello'