hello var text string

This commit is contained in:
Mert Gör 🇹🇷 2025-03-25 04:46:39 +03:00
parent 43bca0868e
commit f4dc58dcdc
Signed by: mertgor
GPG key ID: 03E547D043AB6C8F

8
main.go Normal file
View file

@ -0,0 +1,8 @@
package main
import "fmt"
func main() {
var text string = "Hello Golang World!"
fmt.Println(text)
}