This commit is contained in:
efim
2023-12-01 08:31:47 +00:00
commit 4f286742bb
7 changed files with 98 additions and 0 deletions

8
main.go Normal file
View File

@@ -0,0 +1,8 @@
package main
import "fmt"
func main() {
s := "yoyo"
fmt.Printf("hello, %s\n", s)
}