writing int variable and writing and telling type of variable

This commit is contained in:
Mert Gör 🇹🇷 2025-03-25 05:53:39 +03:00
parent 0d564cc1dd
commit f61d0df67b
Signed by: mertgor
GPG key ID: 03E547D043AB6C8F

View file

@ -16,4 +16,7 @@ func main() {
fmt.Println(vat_float) fmt.Println(vat_float)
vat_another := 25
fmt.Println(vat_another)
fmt.Printf("data type : %T\n", vat_another)
} }