12 lines
124 B
Go
12 lines
124 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
|
||
|
|
mat "github.com/skelterjohn/go.matrix"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
fmt.Println(mat.Eye(3))
|
||
|
|
}
|