mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-29 00:55:32 +00:00
9 lines
112 B
Go
9 lines
112 B
Go
package functions
|
|
|
|
func FirstLetter(s string) string {
|
|
if len(s) == 0 {
|
|
return ""
|
|
}
|
|
return string(s[:1])
|
|
}
|