peckertest/main.go

12 lines
141 B
Go
Raw Normal View History

2022-01-10 12:02:45 +00:00
package main
import (
"fmt"
"git.t-juice.club/torjus/peckertest/internal"
)
func main() {
fmt.Printf("5+5=%d\n", internal.Add(5, 5))
}