GO语言学习笔记01 cannot use '\u0000' (type rune) as type string in assignment,
packagemainimport(“fmt”)var(a=123b=“xyz”c=false)funcpri(){a,b,d:=1,‘ppp’,truefmt.Println(a,b,c,d)}pri函数报错cannotuse‘\u0000’(typerune)astypestringinassignment,因为此处定义的d单引号,变量类型为rune,因此报错