12 lines
109 B
Go
12 lines
109 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"fourth/sub"
|
|
)
|
|
|
|
|
|
func main() {
|
|
res := sub.Kek("data.txt")
|
|
fmt.Println(res)
|
|
} |