Skip to content

Instantly share code, notes, and snippets.

@softmoth
Created July 19, 2012 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save softmoth/3146951 to your computer and use it in GitHub Desktop.
Save softmoth/3146951 to your computer and use it in GitHub Desktop.
sub checklastval () is rw {
Proxy.new(
FETCH => sub ($self) { #OK not used
'hello',
},
STORE => sub ($self, $val) { #OK not used
'hello';
}
);
};
checklastval() = 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment