14 lines
115 B
Go
14 lines
115 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
type S1 string
|
|
|
|
func main() {
|
|
s := S1("Hello")
|
|
fmt.Println(s)
|
|
}
|
|
|
|
// Output:
|
|
// Hello
|