4 lines
90 B
Text
4 lines
90 B
Text
obj->method();
|
|
obj["method"]();
|
|
call_function(obj->method);
|
|
call_function(obj["method"]);
|