feat: ugh...this shouldn't be that hard

This commit is contained in:
Stevan Freeborn
2025-12-02 07:18:38 -06:00
parent e7c180de4b
commit d61a630607
5 changed files with 111 additions and 4 deletions
-2
View File
@@ -3,7 +3,6 @@ package file
import (
"bufio"
"fmt"
"os"
)
@@ -20,7 +19,6 @@ func ReadLines(filePath string) []string {
for hasLine := scanner.Scan(); hasLine; hasLine = scanner.Scan() {
line := scanner.Text()
fmt.Println(line)
lines = append(lines, line)
}