Akteure beginning

This commit is contained in:
Simon Martens
2024-12-26 01:26:51 +01:00
parent 4de0eab443
commit 86152bd46d
47 changed files with 61845 additions and 23644 deletions

8
functions/string.go Normal file
View File

@@ -0,0 +1,8 @@
package functions
func FirstLetter(s string) string {
if len(s) == 0 {
return ""
}
return string(s[:1])
}