view _test/Test/Config/Bar.pm @ 427:09e0086a82a7 ref20150831 tip

Merge
author cin
date Tue, 15 May 2018 00:51:33 +0300
parents 3ed0c58e9da3
children
line wrap: on
line source

package Test::Config::Bar;
use strict;
use IMPL::declare {
	base => [
	   'IMPL::Object' => undef
	],
	props => [
	   value => 'r'
	]
};

sub CTOR {
	my $this = shift;
	
	$this->value(shift) if @_;
}

1;