goplus / gop

The Go+ programming language is designed for engineering, STEM education, and data science. Our vision is to enable everyone to become a builder of the digital world.
https://goplus.org
Apache License 2.0
8.98k stars 548 forks source link

type of slice literals in variable assignments #1954

Closed xushiwei closed 4 months ago

xushiwei commented 4 months ago

Proposal

var a []any = [10, 3.14, 200]
echo a

a = [10, 3.14, 200]  // cannot use [10, 3.14, 200] (type []float64) as type []interface{} in assignment
echo a

Background

none

Workarounds

none