]> git.donarmstrong.com Git - lib.git/blob - emacs_el/snippets/cperl-mode/hasmoo
use yasnippet from straight
[lib.git] / emacs_el / snippets / cperl-mode / hasmoo
1 # -*- mode: snippet -*-
2 # name: hasmoo
3 # key: hasmoo
4 # --
5 =item ${1:attribute}
6
7 $0
8
9 =cut
10
11 has $1 => (is => 'ro',
12            isa => 'Str',
13            lazy => 1,
14            builder => '_build_$1',
15            );
16
17 sub _build_$1 {
18
19 }