|
|
|
|
|
by uryga
2083 days ago
|
|
right, but doesn't that contradict this: > "in Copper, variables only store functions" because here, `x` clearly stores an object... is this about the whole "object-function" thing where Copper doesn't really distinguish the two? (btw i'm sure this is explained in the docs... but maybe this'll help folks like me who often just read the comments) |
|
class FunctionObject {
FunctionObject* members[];
void* operator() { /* executable body */ }
};