mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
22 lines
198 B
Go
22 lines
198 B
Go
package main
|
|
|
|
import (
|
|
"chatplus/utils"
|
|
"fmt"
|
|
)
|
|
|
|
type Person struct {
|
|
Name string
|
|
Age int
|
|
}
|
|
|
|
type Student struct {
|
|
Person
|
|
School string
|
|
}
|
|
|
|
func main() {
|
|
|
|
fmt.Println(utils.RandString(64))
|
|
}
|