Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 267 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 267 Bytes

Tuple

一、安装

go get -u github.com/golang-infrastructure/go-tuple

二、示例代码

package main

import (
	"fmt"
	"github.com/golang-infrastructure/go-tuple"
)

func main() {

	t2 := tuple.New2(1, "test")
	fmt.Println(t2)

}