mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
9 lines
201 B
Plaintext
9 lines
201 B
Plaintext
# -*- mode: snippet -*-
|
|
# contributer: Yusuke Tsutsumi <tsutsumi.yusuke@gmail.com>
|
|
# name: bench
|
|
# key: bench
|
|
# description: add a benchmark method
|
|
# --
|
|
func Benchmark${1:Feature}(b *testing.B) {
|
|
$0
|
|
} |