Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package main
- import (
- "log"
- )
- func main() {
- matrix := [][]float64{
- []float64{1, 2, 3},
- []float64{4, 5, 6},
- }
- if !(matrix[1][1] == 5) {
- log.Fatal("Wrong value")
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement