EntropyOrg / p5-Devel-IPerl

:microscope::books: Perl5 language kernel for Jupyter <http://jupyter.org/>
http://p3rl.org/Devel::IPerl
93 stars 15 forks source link

Figure out the workflow for autoreload #34

Open zmughal opened 9 years ago

zmughal commented 9 years ago

IPython extension: http://ipython.org/ipython-doc/stable/config/extensions/autoreload.html

package Experiment {
use Moo;

has [ qw( param1 param2 param3 ) ] => ( is => 'rw' );
has data => ( is => 'rw' );

};

I should be able to come back later and add another attribute to the Moo class and not have it give me the error: You cannot overwrite a locally defined method (attribute_name) with an accessor at...