peckertest/main.go
2022-01-10 13:02:45 +01:00

12 lines
141 B
Go

package main
import (
"fmt"
"git.t-juice.club/torjus/peckertest/internal"
)
func main() {
fmt.Printf("5+5=%d\n", internal.Add(5, 5))
}