diff --git a/algorithms/Go/sorting/bubble-sort.go b/algorithms/Go/sorting/bubble-sort.go index 37eed220..287d7d0c 100644 --- a/algorithms/Go/sorting/bubble-sort.go +++ b/algorithms/Go/sorting/bubble-sort.go @@ -26,3 +26,4 @@ func RunBubbleSort() { bubbleSort(sliceInt, len(sliceInt)) fmt.Println(sliceInt) } +