6 lines
62 B
Go
6 lines
62 B
Go
|
package main
|
||
|
|
||
|
func stringPtr(s string) *string {
|
||
|
return &s
|
||
|
}
|