Files
moxa/_test/type3.go
2018-06-29 17:51:48 +02:00

14 lines
115 B
Go

package main
import "fmt"
type S1 string
func main() {
s := S1("Hello")
fmt.Println(s)
}
// Output:
// Hello