go-crosscompile/cmd/app/main.go

16 lines
222 B
Go
Raw Normal View History

2023-08-30 21:14:10 +03:00
package main
import (
"fmt"
"path/filepath"
"git.aliberksandikci.com.tr/asandikci/go-crosscompile/pkg/mypkg"
)
func main() {
s := filepath.Join("a", "b", "c")
fmt.Println(mypkg.Symbol("1", "2"))
fmt.Println(s)
}