package main

import (
	"fmt"

	"gitlab.golang-school.ru/potok-2/mnepryakhin/libs/hello"
)

func main() {
	fmt.Println(
		hello.Hello(),
	)
}
