20 lines
197 B
Plaintext
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)
|
|
|
|
}
|