Translate To Preferred Language

Search Obioku's Thoughts

Please Read Today's Featured Post

Things I Would Like To Happen Soon

For all those who believe in speaking ideas into existence and prayer in the universe will return to a person.  I simply want to write a lis...

HelloWorld Example in Go (some bugs may occur)

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)

var slice []int

slice = make([]int, 1, 2)

fmt.Println("Dimensions of slice are", len(slice), cap(slice), slice)
}

func math(o1, o2 int) (int, int, int, int) {
var a int = o1 + o2
var b int = o1 - o2
var c int = o1 * o2
var d int = o1 / o2

return a, b, c, d
}

No comments:

Post a Comment

Thank you very much for viewing this entry and I hope you are able to return soon to continue to enjoy more of the site.
Please share your thoughts in the comment section.
Be blessed and enjoy life!