package main import ( "fmt" "dsa.go/pkg/algo" ) func main() { fmt.Println("Learning and Practicing DSA in Go.") algo.InsertionSort([]int{5, 2, 4, 6, 1, 3}, 6) }