문제 GoLang은 2차원 slice부터 값을 추가할 때. slice에 len(length)과 cap(capacity)을 지정하지 않으면 인덱스를 통한 접근에서 에러가 발생합니다. 다음이 에러가 발생하는 예제입니다. package main func main() { var slices [][]int for i := 0; i < 3; i++ { for j := 0; j < 5; j++ { slices[i][j] = i + j } } } 에러는 다음과 같습니다. panic: runtime error: index out of range [0] with length 0 panic: runtime error: index out of range [0] with length 0 goroutine 1 [running]:..
Go Lang/Error
https://echo.labstack.com/ Echo - High performance, minimalist Go web framework Echo is a high performance, extensible, minimalist web framework for Go (Golang). echo.labstack.com Go의 웹 프레임워크인 Echo의 아래와 같은 튜토리얼 진행 중 package main import ( "net/http" "github.com/labstack/echo/v4" ) func main() { e := echo.New() e.GET("/", func(c echo.Context) error { return c.String(http.StatusOK, "Hello, World!")..