Files
go-in-devcontainer/cmd/app/main.go
2026-02-02 03:51:09 +03:00

10 lines
152 B
Go

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