rice

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

forrange (137B)


      1 # -*- mode: snippet -*-
      2 # name: for range
      3 # key: range
      4 # contributor : @atotto
      5 # --
      6 for ${3:key}, ${2:value} := range ${1:target} {
      7 	$0
      8 }