HelloWorld Example in Go

Obioku Obotette
Oct 22, 2020

package main

import “fmt”
import “time”

func main() {
var name string = “Obioku Obotette”

fmt.Println(“Name is”, name)

fmt.Println(“Address of name is”, &name)

fmt.Println(“It is”, time.Now())

add, subtract, multiply, divide := math(6, 8)

fmt.Println(“Results for math function are”, add, subtract, multiply, divide)

--

--

Obioku Obotette
0 Followers

Trying to introduce myself in a new forum with hopeful expectations!