Learning GO

This commit is contained in:
Zakaria
2026-08-31 14:57:35 -04:00
commit d307eb2698
19 changed files with 310 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package main
import (
"fmt"
)
const name = "Sara"
love := "Kahlousha"
number := 43900900
func main() {
const world = "Mykids"
fmt.Println("Hello,", world)
fmt.Println("I love ", name)
}