summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/rust-mode/new
blob: c5f21c13ae5d39208c2653d55de53b67cd3ecd76 (plain)
1
2
3
4
5
6
7
# -*- mode: snippet -*-
# name: pub fn new() { ... }
# key: new
# --
pub fn new($1) -> ${2:Name} {
    $2 { ${3} }
}