mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
11 lines
120 B
Go
11 lines
120 B
Go
package slice
|
|
|
|
import "testing"
|
|
|
|
func TestSlice(t *testing.T) {
|
|
a := []float64{}
|
|
a[1] = 3
|
|
t.Log(a[0])
|
|
t.Log(a[1])
|
|
}
|