Files
letsGO/courses/1
T
2026-08-31 14:57:35 -04:00

20 lines
197 B
Plaintext

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)
}