learning_go/headFirst/fourth/main.go
2025-08-26 19:45:51 +03:00

12 lines
109 B
Go

package main
import (
"fmt"
"fourth/sub"
)
func main() {
res := sub.Kek("data.txt")
fmt.Println(res)
}