Thursday, November 30, 2017

Hello World in Go

A very simple program that I wrote using Go programming language that will display hello world message on the screen.

I am currently accepting programming work kindly contact me in the following email address for further details. Thank you.

My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental is (034) 4335675.



Sample Program Output


Program Listing

hello.go


// Hello World in Go 
// Written By Mr. Jake R. Pomperada
// November 30, 2017


package main

import "fmt"

func main() {  
fmt.Print("\n\n")
fmt.Print("Hello World in Go")
fmt.Print("\n\n")
    fmt.Println("Hello World From Go Language.")
    fmt.Print("\n\n")
    fmt.Print("End of Program")
    fmt.Print("\n\n")
   
}

No comments:

Post a Comment