for (98B)
1 # -*- mode: snippet -*- 2 # name: for 3 # key: for 4 # -- 5 for (u64 ${1:i} = 0; $1 < $2; ++$1) { 6 $0 7 }