# -*- mode: snippet -*- # name: hasmoo # key: hasmoo # -- =item ${1:attribute} $0 =cut has $1 => (is => 'ro', isa => 'Str', lazy => 1, builder => '_build_$1', ); sub _build_$1 { }