12 lines
141 B
Go
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))
|
||
|
}
|