This commit is contained in:
2026-02-02 03:51:09 +03:00
commit 4879253847
3 changed files with 28 additions and 0 deletions

9
cmd/app/main.go Normal file
View File

@ -0,0 +1,9 @@
package main
import "fmt"
func main() {
fmt.Println("Hello world")
c := fmt.Sprintf("Test text: %s", "formatted")
fmt.Printf("Some text: %s", c)
}