This commit is contained in:
Slayder12
2025-12-02 14:32:08 +03:00
commit 8e36cee8af
5 changed files with 87 additions and 0 deletions

15
main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"fmt"
)
func main() {
fmt.Println(hello())
}
func hello() string {
return "Hello go"
}