rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

constructor (162B)


      1 # -*- mode: snippet -*-
      2 # name: for constructor
      3 # key: new
      4 # contributor : @atotto
      5 # --
      6 // New$1 returns a new $1.
      7 func New$1() *$1 {
      8 	$2 := &$1{$0}
      9 	return $2
     10 }