SlideShare a Scribd company logo
Golang Dominicana:
Workshop
About me
Víctor S. Recio
CEO NerCore LLC,
@vsrecio / vrecio@nercore.com
Fundador y Organizador
● Docker Santo Domingo
● Linux Dominicana
● Golang Dominicana
● OpenSaturday.org
Software Developer Skills
Skills required for a software developer:
● Programming Language
● Text Editor
● Source Code Management
● Operating System
Activity*: 5 minute group discussion (_Icebreaker_)
Ground Rules
- Workshops are hard, everyone works at a different pace
- We will move on when about 50% are ready
- Slides are online, feel free to work ahead or catch up
Requirements
- Not need experience in some other language (Python, Ruby, Java, etc.)
- Know how to use Git version control system
- Comfortable with one shell (Bash, Zsh)
- Comfortable with one text editor (Vim, IntelliJ, Atom.)
- Install Go plugin for your text editor/IDE: VIM, IntelliJ, Atom
- Internet connectivity should be ensured
- Operating system with Go support (Linux, Mac OS. FreeBSD)
Agenda
- Format: talk, exercise, talk, exercise ... (short Q&A in between)
- General facts
- Running a hello world
- Reasons to use Go
- Development environment setup
- Types
- Control structures
- Data structures
- Functions
- Interfaces
- Concurrency
Facts
- General Purpose Programming Language
- Free and Open Source (FOSS)
- Created at Google by Robert Griesemer, Rob Pike and Ken Thompson
- Development started in 2007 and publicly released in November 2009
- C like syntax (no semicolons) (;)
- Object Oriented (Composition over inheritance - no classes!)
- Compiled (Statically linked)
- Garbage collected
- Statically typed
- Strongly typed
- built-in concurrency
- Two major compilers: gc & gccgo
- 25 keywords (less than C,C++,Python etc.)
- Classification (Capitalized are exported - public)
Facts
- Fast build (in seconds)
- Unused imports and variables raise compile error
- Operating Systems: Windows, GNU/Linux, Mac OS X, *BSD etc.
- CPU Architectures: amd64, i386, arm etc.
- Cross compilation
- Standard library
- No exceptions
- Pointers (No pointer arithmetic!)
Hello World!
package main
import "fmt"
func main() {
fmt.Println("Hello, Comunidad de Golang Dominicana!")
}
1
1
2
3
4
2
3
4
Este es conocido como declaracion de paquetes y es obligatorio.
Esta es la forma como incluimos código de otro paquete
Las funciones son los bloques de construcción de un programa en Go.
Las funciones poseen Input y Ouput y una serie de pasos llamados
declaraciones o sentencias.
Why Golang?
● Go compiles very quickly.
● Go supports concurrency at the language level.
● Functions are first class objects in Go.
● Go has garbage collection.
● Strings and maps are built into the language.
● Google is the owner
How are using Golang?
- Google
- Docker Inc.
- CoreOS
- Open Stack
- Digital Ocean
- AWS
- Twitter
- iron.io
https://github.com/golang/go/wiki/GoUsers
Installing Go on Linux
● Download Go compiler binary from https://golang.org/dl
● Extract it into your home directory (`$HOME/go`)
● Create directory named `mygo` in your home directory (`$HOME/mygo`)
● Add the following lines to your `$HOME/.bashrc`
# Variables Golang
export GOROOT=$HOME/go
export PATH=$GOROOT/bin:$PATH
export GOPATH=$HOME/mygo
export PATH=$GOPATH/bin:$PATH
● https://golang.org/doc/install
Building and Running
- You can run the program using "go run" command: go run hello.go
- You can also build (compile) and run the binary like this in GNU/Linux:
$ go build hello.go
$ ./hello
(The first command produce a binary and second command executes the binary)
Formatting Code
● Use "go fmt <file.go>" to format Go source file
● No more debate about formatting!
● Can integrate with editors like Vim, Emacs etc.
● *Proverb*: Gofmt's style is no one's favorite, yet gofmt is everyone's favorite.
(*Exercise*: 1)
Cross Compiling
● The "go build" command produce a binary file native to the operating system
and the architecture of the CPU (i386, x86_64 etc.)
● Specify targeted platform using environment variables: GOOS & GOARCH
● List of environment variables:
https://golang.org/doc/install/source#environment
GOOS=linux
GOARCH=x86-64
*Activity*: Produce binary for different operating systems and architectures
Formatting Code
● *$GOPATH* directory is a workspace (sources, packages, and binaries)
● Three sub-directories under $GOPATH: bin, pkg and src
● *bin* directory contains executable binaries (add to $PATH)
● The *src* directory contains the source files.
● The *pkg* directory contains package objects used by go tool to create the final
executable
● The Go tool understands the layout of a workspace
mygo
|-- bin
|-- pkg
|-- src
If you are using GitHub for hosting code, you can create a directory structure under
workspace like this:
src/github.com/<username>/<projectname>
Replace the <username> with your GitHub username or organization name and
<projectname> with the name of the project. For example:
src/github.com/vsrecio/demo
(*Note*: When you fork a project in Github use "go get" with the upstream location)
Getting third party packages
● The "go get" command download source repositories and places them in the
workspace
$ go get github.com/vsrecio/demo
$ go get golang.org/x/tools/...
● Repo URL and package path will be same normally (This helps Go tool to fetch)
● To update use "-u" flag
$ go get -u github.com/vsrecio/demo
- *Activity*: Run "go get" as given above
Exercise 1
Write a program to print ”Hello, World!” and save this in a file named
helloworld.go. Compile the program and run it like this:
$ ./helloworld
Go Tools
● Run "go help" to see list of available commands
● Use "go help [command]" for more information about a command
Few commonly used commands:
- build - compile packages and dependencies
- fmt - run gofmt on package sources
- get - download and install packages and dependencies
- install - compile and install packages and dependencies
- run - compile and run Go program
- test - test packages
- version - print Go version
Keywords
● Keywords are reserved words
● Cannot be used as identifiers
● Provide structure and meaning to the language
break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continue for import return var
Comments
● Two kinds of comments
● C Style
/* This is a multi-line comment
... and this is a the second line
*/
● C++ style
// Single line number
// Starts with two slashes
*Activity*: Update the `hello.go` with few comments and run
Primitive types
int, uint, int8, uint8, ...
bool, string
float32, float64
complex64, complex128
package main
import "fmt"
func main() {
fmt.Printf("Value: %v, Type: %Tn", "Baiju", "Baiju")
fmt.Printf("Value: %v, Type: %Tn", 7, 7)
fmt.Printf("Value: %v, Type: %Tn" uint(7), uint(7))
fmt.Printf("Value: %v, Type: %Tn", int8(7), int8(7))
fmt.Printf("Value: %v, Type: %Tn" true, true)
fmt.Printf("Value: %v, Type: %Tn" 7.0, 7.0)
fmt.Printf("Value: %v, Type: %Tn" (1 + 6i), (1 + 6i))
}
Variables
● Type is explicitly specified but initialized with default zero values
● The zero value is 0 for numeric types, false for Boolean type and empty
string for strings.
package main
import "fmt"
func main() {
var age int
var tall bool
var name, place string
fmt.Printf("%#v, %#v, %#v, %#vn", age, tall, name, place)
}
● Type is explicitly specified and initialized with given values
package main
import "fmt"
func main() {
var age int = 10
var tall bool = true
var name, place string = "Baiju", "Bangalore"
fmt.Printf("%#v, %#v, %#v, %#vn", age, tall, name, place)
}
● Type is inferred from the values that is given for initialization
package main
import "fmt"
func main() {
var i = 10 // int
var s, b = "Baiju", true //string, bool
fmt.Printf("%#v, %#v, %#v, %#vn", i, s, b)
}
● Short variable declaration inside functions (Similar to above - type is inferred
from the values that is given for initialization)
package main
import "fmt"
func main() {
i := 10 // int
s, b := "Baiju", true //string, bool
fmt.Printf("%#v, %#v, %#v, %#vn", i, s, b)
}
Constants
● Constants are declared like variables, but with the const keyword.
● Constants can be character, string, Boolean, or numeric values.
● Constants cannot be declared using the := syntax.
const Male = true
const Pi = 3.14
const Name = "Baiju"
- *Activity*: Write a program to define the above constants and print it
Exercise 2
Write a program that converts from Fahrenheit into Celsius (C = (F - 32) * 5/9)
If Conditions
● Syntax inspired by C
● Curly brace is mandatory
package main
import "fmt"
func main() {
if 1 < 2 {
fmt.Printf("1 is less than 2")
}
}
● The if statement can start with a short statement to execute before the condition
● Variables declared by the statement are only in scope until the end of the if
● Variables declared inside an if short statement are also available inside any of
the else block
package main
import "fmt"
func main() {
if money := 20000; money > 15000 {
fmt.Println("I am going to buy a car.")
} else {
fmt.Println("I am going to buy a bike.")
}
// can't use the variable `money` here
}
Errors
● Go programs express error state with *error* values
● The error type is a built-in interface
● -Functions often return an error value, and calling code should handle
errors by testing whether the error equals *nil*.
package main
import ("fmt", "strconv")
func main() {
i, err := strconv.Atoi("42")
if err != nil {
fmt.Printf("couldn't convert number: %vn", err)
return
}
fmt.Println("Converted integer:", i)
}
Packages
● Every Go program is made up of packages
● Package name must be declared in source files
● To create executable use name of package as *main*
● Programs start running in package main
● All the package files resides in a directory
package main
● Import give access to exported stuff from other packages
● Any "unexported" names are not accessible from outside the package
● Foo is an exported name, as is FOO. The name foo is not exported
● By convention, package name is the same as the last element of the import
path
● Initialization logic for package goes into a function named *init*
● Use alias to avoid package name ambiguity with package imports
import (
"fmt"
"github.com/baijum/fmt"
)
Blank identifier
● Underscore (*_*) is the blank identifier
● Blank identifier can be used as import alias to invoke *init* function without
using the package
import (
"database/sql"
_ "github.com/lib/pq"
)
● Blank identifier can be used to ignore return values from function
x, _ := someFunc()
For Loop
● The only looping construct (no while loop)
● Syntax inspired by C
● No parenthesis (not even optional)
● Curly brace is mandatory
package main
import "fmt"
func main() {
for i := 0; i < 5; i++ {
fmt.Println("Baiju")
}
}
Exercise 3
Write a program that prints all the numbers between 1 and 100, that are evently
divisible by 3 (3, 6,9).
Switch statement
● The cases are evaluated top to bottom until a match is found
● There is no automatic fall through
● Cases can be presented in comma-separated lists
● break statements can be used to terminate a switch early
package main
import (
"fmt"
"time"
)
func main() {
t := time.Now()
switch {
case t.Hour() < 12:
fmt.Println("Good morning!")
case t.Hour() < 17:
fmt.Println("Good afternoon.")
default:
fmt.Println("Good evening.")
}
}
Defer statement
● Ensure a cleanup function is called later
● To recover from runtime panic
● Executed in LIFO order
package main
import "fmt"
func main() {
defer fmt.Println("world")
fmt.Println("hello")
}
Write a program that prints all the numbers between 1 to 100, for multiples of
three, print “Fizz” instead of the number, and for the multiples of five, print
“Buzz”. For numbers that are multiples of both three and five, print “FizzBuzz”.
Exercise 4

More Related Content

PDF
Git 101: Git and GitHub for Beginners
PPTX
Git commands
PDF
Coding with golang
PPTX
Golang - Overview of Go (golang) Language
PPTX
Golang (Go Programming Language)
PDF
GoLang Introduction
PDF
Go language presentation
PDF
git and github
Git 101: Git and GitHub for Beginners
Git commands
Coding with golang
Golang - Overview of Go (golang) Language
Golang (Go Programming Language)
GoLang Introduction
Go language presentation
git and github

What's hot (20)

PPTX
Introduction to go lang
PPTX
Go Programming language, golang
PDF
Golang
PDF
Git training v10
PPTX
Git One Day Training Notes
PPTX
Go Programming Language (Golang)
PDF
PPTX
Introduction to Node js
PPTX
Gnu debugger
PPTX
Php cookies
PPTX
Go. Why it goes
PDF
Loom Virtual Threads in the JDK 19
PDF
Git & GitHub for Beginners
PPT
Maven Introduction
PPTX
Go Language presentation
PPTX
Git in 10 minutes
PDF
Introduction to Go programming language
PDF
Monitors
PPTX
Introduction to go lang
Go Programming language, golang
Golang
Git training v10
Git One Day Training Notes
Go Programming Language (Golang)
Introduction to Node js
Gnu debugger
Php cookies
Go. Why it goes
Loom Virtual Threads in the JDK 19
Git & GitHub for Beginners
Maven Introduction
Go Language presentation
Git in 10 minutes
Introduction to Go programming language
Monitors
Ad

Viewers also liked (9)

PDF
CoreOS Overview
PPTX
Develop android application with mono for android
ODP
Golang web database3
PPTX
Charla-Taller Git & GitHub
PPTX
Hacking Go Compiler Internals / GoCon 2014 Autumn
PPTX
La cuartarevindustrial_industrial: Internet de las cosas y big data. los pila...
PPTX
Ciberseguridad: Retos, oportunidades y riesgos de las tecnologías emergentes
PPTX
Internet de las cosas y Big Data. Los pilares de la cuarta revolución industrial
PDF
A Guide to SlideShare Analytics - Excerpts from Hubspot's Step by Step Guide ...
CoreOS Overview
Develop android application with mono for android
Golang web database3
Charla-Taller Git & GitHub
Hacking Go Compiler Internals / GoCon 2014 Autumn
La cuartarevindustrial_industrial: Internet de las cosas y big data. los pila...
Ciberseguridad: Retos, oportunidades y riesgos de las tecnologías emergentes
Internet de las cosas y Big Data. Los pilares de la cuarta revolución industrial
A Guide to SlideShare Analytics - Excerpts from Hubspot's Step by Step Guide ...
Ad

Similar to Golang workshop (20)

PDF
Go for SysAdmins - LISA 2015
PPTX
Lab1GoBasicswithgo_foundationofgolang.pptx
PDF
Introduction to Go
PDF
Introduction to Programming in Go
PPTX
The GO Language : From Beginners to Gophers
PDF
Go Programming by Example_ Nho Vĩnh Share.pdf
PDF
Getting Started with Go
PDF
Go_ Get iT! .pdf
PDF
The GO programming language
PPTX
Golang iran - tutorial go programming language - Preliminary
PDF
Lecture 1 - Overview of Go Language 1.pdf
PDF
Beginning development in go
PDF
Introduction to go language programming
PDF
Let's Go-lang
PDF
Go Lang Tutorial
PPTX
Go programing language
PDF
Golang and Eco-System Introduction / Overview
PDF
Introduction to Go language
PPTX
Golang introduction
PPTX
Golang basics for Java developers - Part 1
Go for SysAdmins - LISA 2015
Lab1GoBasicswithgo_foundationofgolang.pptx
Introduction to Go
Introduction to Programming in Go
The GO Language : From Beginners to Gophers
Go Programming by Example_ Nho Vĩnh Share.pdf
Getting Started with Go
Go_ Get iT! .pdf
The GO programming language
Golang iran - tutorial go programming language - Preliminary
Lecture 1 - Overview of Go Language 1.pdf
Beginning development in go
Introduction to go language programming
Let's Go-lang
Go Lang Tutorial
Go programing language
Golang and Eco-System Introduction / Overview
Introduction to Go language
Golang introduction
Golang basics for Java developers - Part 1

More from Victor S. Recio (6)

PDF
Docker images
PDF
Infraestructura
PDF
Setting up a MySQL Docker Container
PDF
Docker up and running
PDF
Docker Started
PDF
Presentation docker
Docker images
Infraestructura
Setting up a MySQL Docker Container
Docker up and running
Docker Started
Presentation docker

Recently uploaded (20)

PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
medical staffing services at VALiNTRY
PPTX
Introduction to Artificial Intelligence
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Nekopoi APK 2025 free lastest update
PPTX
history of c programming in notes for students .pptx
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
L1 - Introduction to python Backend.pptx
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
System and Network Administration Chapter 2
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
How to Migrate SBCGlobal Email to Yahoo Easily
VVF-Customer-Presentation2025-Ver1.9.pptx
medical staffing services at VALiNTRY
Introduction to Artificial Intelligence
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Nekopoi APK 2025 free lastest update
history of c programming in notes for students .pptx
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PTS Company Brochure 2025 (1).pdf.......
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Odoo POS Development Services by CandidRoot Solutions
Wondershare Filmora 15 Crack With Activation Key [2025
L1 - Introduction to python Backend.pptx
Design an Analysis of Algorithms II-SECS-1021-03
CHAPTER 2 - PM Management and IT Context
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Softaken Excel to vCard Converter Software.pdf
System and Network Administration Chapter 2
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025

Golang workshop

  • 2. About me Víctor S. Recio CEO NerCore LLC, @vsrecio / [email protected] Fundador y Organizador ● Docker Santo Domingo ● Linux Dominicana ● Golang Dominicana ● OpenSaturday.org
  • 3. Software Developer Skills Skills required for a software developer: ● Programming Language ● Text Editor ● Source Code Management ● Operating System Activity*: 5 minute group discussion (_Icebreaker_)
  • 4. Ground Rules - Workshops are hard, everyone works at a different pace - We will move on when about 50% are ready - Slides are online, feel free to work ahead or catch up
  • 5. Requirements - Not need experience in some other language (Python, Ruby, Java, etc.) - Know how to use Git version control system - Comfortable with one shell (Bash, Zsh) - Comfortable with one text editor (Vim, IntelliJ, Atom.) - Install Go plugin for your text editor/IDE: VIM, IntelliJ, Atom - Internet connectivity should be ensured - Operating system with Go support (Linux, Mac OS. FreeBSD)
  • 6. Agenda - Format: talk, exercise, talk, exercise ... (short Q&A in between) - General facts - Running a hello world - Reasons to use Go - Development environment setup - Types - Control structures - Data structures - Functions - Interfaces - Concurrency
  • 7. Facts - General Purpose Programming Language - Free and Open Source (FOSS) - Created at Google by Robert Griesemer, Rob Pike and Ken Thompson - Development started in 2007 and publicly released in November 2009 - C like syntax (no semicolons) (;) - Object Oriented (Composition over inheritance - no classes!) - Compiled (Statically linked) - Garbage collected - Statically typed - Strongly typed - built-in concurrency - Two major compilers: gc & gccgo - 25 keywords (less than C,C++,Python etc.) - Classification (Capitalized are exported - public)
  • 8. Facts - Fast build (in seconds) - Unused imports and variables raise compile error - Operating Systems: Windows, GNU/Linux, Mac OS X, *BSD etc. - CPU Architectures: amd64, i386, arm etc. - Cross compilation - Standard library - No exceptions - Pointers (No pointer arithmetic!)
  • 9. Hello World! package main import "fmt" func main() { fmt.Println("Hello, Comunidad de Golang Dominicana!") } 1 1 2 3 4 2 3 4 Este es conocido como declaracion de paquetes y es obligatorio. Esta es la forma como incluimos código de otro paquete Las funciones son los bloques de construcción de un programa en Go. Las funciones poseen Input y Ouput y una serie de pasos llamados declaraciones o sentencias.
  • 10. Why Golang? ● Go compiles very quickly. ● Go supports concurrency at the language level. ● Functions are first class objects in Go. ● Go has garbage collection. ● Strings and maps are built into the language. ● Google is the owner
  • 11. How are using Golang? - Google - Docker Inc. - CoreOS - Open Stack - Digital Ocean - AWS - Twitter - iron.io https://github.com/golang/go/wiki/GoUsers
  • 12. Installing Go on Linux ● Download Go compiler binary from https://golang.org/dl ● Extract it into your home directory (`$HOME/go`) ● Create directory named `mygo` in your home directory (`$HOME/mygo`) ● Add the following lines to your `$HOME/.bashrc` # Variables Golang export GOROOT=$HOME/go export PATH=$GOROOT/bin:$PATH export GOPATH=$HOME/mygo export PATH=$GOPATH/bin:$PATH ● https://golang.org/doc/install
  • 13. Building and Running - You can run the program using "go run" command: go run hello.go - You can also build (compile) and run the binary like this in GNU/Linux: $ go build hello.go $ ./hello (The first command produce a binary and second command executes the binary)
  • 14. Formatting Code ● Use "go fmt <file.go>" to format Go source file ● No more debate about formatting! ● Can integrate with editors like Vim, Emacs etc. ● *Proverb*: Gofmt's style is no one's favorite, yet gofmt is everyone's favorite. (*Exercise*: 1)
  • 15. Cross Compiling ● The "go build" command produce a binary file native to the operating system and the architecture of the CPU (i386, x86_64 etc.) ● Specify targeted platform using environment variables: GOOS & GOARCH ● List of environment variables: https://golang.org/doc/install/source#environment GOOS=linux GOARCH=x86-64 *Activity*: Produce binary for different operating systems and architectures
  • 16. Formatting Code ● *$GOPATH* directory is a workspace (sources, packages, and binaries) ● Three sub-directories under $GOPATH: bin, pkg and src ● *bin* directory contains executable binaries (add to $PATH) ● The *src* directory contains the source files. ● The *pkg* directory contains package objects used by go tool to create the final executable ● The Go tool understands the layout of a workspace mygo |-- bin |-- pkg |-- src
  • 17. If you are using GitHub for hosting code, you can create a directory structure under workspace like this: src/github.com/<username>/<projectname> Replace the <username> with your GitHub username or organization name and <projectname> with the name of the project. For example: src/github.com/vsrecio/demo (*Note*: When you fork a project in Github use "go get" with the upstream location)
  • 18. Getting third party packages ● The "go get" command download source repositories and places them in the workspace $ go get github.com/vsrecio/demo $ go get golang.org/x/tools/... ● Repo URL and package path will be same normally (This helps Go tool to fetch) ● To update use "-u" flag $ go get -u github.com/vsrecio/demo - *Activity*: Run "go get" as given above
  • 19. Exercise 1 Write a program to print ”Hello, World!” and save this in a file named helloworld.go. Compile the program and run it like this: $ ./helloworld
  • 20. Go Tools ● Run "go help" to see list of available commands ● Use "go help [command]" for more information about a command Few commonly used commands: - build - compile packages and dependencies - fmt - run gofmt on package sources - get - download and install packages and dependencies - install - compile and install packages and dependencies - run - compile and run Go program - test - test packages - version - print Go version
  • 21. Keywords ● Keywords are reserved words ● Cannot be used as identifiers ● Provide structure and meaning to the language break default func interface select case defer go map struct chan else goto package switch const fallthrough if range type continue for import return var
  • 22. Comments ● Two kinds of comments ● C Style /* This is a multi-line comment ... and this is a the second line */ ● C++ style // Single line number // Starts with two slashes *Activity*: Update the `hello.go` with few comments and run
  • 23. Primitive types int, uint, int8, uint8, ... bool, string float32, float64 complex64, complex128 package main import "fmt" func main() { fmt.Printf("Value: %v, Type: %Tn", "Baiju", "Baiju") fmt.Printf("Value: %v, Type: %Tn", 7, 7) fmt.Printf("Value: %v, Type: %Tn" uint(7), uint(7)) fmt.Printf("Value: %v, Type: %Tn", int8(7), int8(7)) fmt.Printf("Value: %v, Type: %Tn" true, true) fmt.Printf("Value: %v, Type: %Tn" 7.0, 7.0) fmt.Printf("Value: %v, Type: %Tn" (1 + 6i), (1 + 6i)) }
  • 24. Variables ● Type is explicitly specified but initialized with default zero values ● The zero value is 0 for numeric types, false for Boolean type and empty string for strings. package main import "fmt" func main() { var age int var tall bool var name, place string fmt.Printf("%#v, %#v, %#v, %#vn", age, tall, name, place) }
  • 25. ● Type is explicitly specified and initialized with given values package main import "fmt" func main() { var age int = 10 var tall bool = true var name, place string = "Baiju", "Bangalore" fmt.Printf("%#v, %#v, %#v, %#vn", age, tall, name, place) }
  • 26. ● Type is inferred from the values that is given for initialization package main import "fmt" func main() { var i = 10 // int var s, b = "Baiju", true //string, bool fmt.Printf("%#v, %#v, %#v, %#vn", i, s, b) }
  • 27. ● Short variable declaration inside functions (Similar to above - type is inferred from the values that is given for initialization) package main import "fmt" func main() { i := 10 // int s, b := "Baiju", true //string, bool fmt.Printf("%#v, %#v, %#v, %#vn", i, s, b) }
  • 28. Constants ● Constants are declared like variables, but with the const keyword. ● Constants can be character, string, Boolean, or numeric values. ● Constants cannot be declared using the := syntax. const Male = true const Pi = 3.14 const Name = "Baiju" - *Activity*: Write a program to define the above constants and print it
  • 29. Exercise 2 Write a program that converts from Fahrenheit into Celsius (C = (F - 32) * 5/9)
  • 30. If Conditions ● Syntax inspired by C ● Curly brace is mandatory package main import "fmt" func main() { if 1 < 2 { fmt.Printf("1 is less than 2") } }
  • 31. ● The if statement can start with a short statement to execute before the condition ● Variables declared by the statement are only in scope until the end of the if ● Variables declared inside an if short statement are also available inside any of the else block package main import "fmt" func main() { if money := 20000; money > 15000 { fmt.Println("I am going to buy a car.") } else { fmt.Println("I am going to buy a bike.") } // can't use the variable `money` here }
  • 32. Errors ● Go programs express error state with *error* values ● The error type is a built-in interface ● -Functions often return an error value, and calling code should handle errors by testing whether the error equals *nil*. package main import ("fmt", "strconv") func main() { i, err := strconv.Atoi("42") if err != nil { fmt.Printf("couldn't convert number: %vn", err) return } fmt.Println("Converted integer:", i) }
  • 33. Packages ● Every Go program is made up of packages ● Package name must be declared in source files ● To create executable use name of package as *main* ● Programs start running in package main ● All the package files resides in a directory package main
  • 34. ● Import give access to exported stuff from other packages ● Any "unexported" names are not accessible from outside the package ● Foo is an exported name, as is FOO. The name foo is not exported ● By convention, package name is the same as the last element of the import path ● Initialization logic for package goes into a function named *init* ● Use alias to avoid package name ambiguity with package imports import ( "fmt" "github.com/baijum/fmt" )
  • 35. Blank identifier ● Underscore (*_*) is the blank identifier ● Blank identifier can be used as import alias to invoke *init* function without using the package import ( "database/sql" _ "github.com/lib/pq" ) ● Blank identifier can be used to ignore return values from function x, _ := someFunc()
  • 36. For Loop ● The only looping construct (no while loop) ● Syntax inspired by C ● No parenthesis (not even optional) ● Curly brace is mandatory package main import "fmt" func main() { for i := 0; i < 5; i++ { fmt.Println("Baiju") } }
  • 37. Exercise 3 Write a program that prints all the numbers between 1 and 100, that are evently divisible by 3 (3, 6,9).
  • 38. Switch statement ● The cases are evaluated top to bottom until a match is found ● There is no automatic fall through ● Cases can be presented in comma-separated lists ● break statements can be used to terminate a switch early
  • 39. package main import ( "fmt" "time" ) func main() { t := time.Now() switch { case t.Hour() < 12: fmt.Println("Good morning!") case t.Hour() < 17: fmt.Println("Good afternoon.") default: fmt.Println("Good evening.") } }
  • 40. Defer statement ● Ensure a cleanup function is called later ● To recover from runtime panic ● Executed in LIFO order package main import "fmt" func main() { defer fmt.Println("world") fmt.Println("hello") }
  • 41. Write a program that prints all the numbers between 1 to 100, for multiples of three, print “Fizz” instead of the number, and for the multiples of five, print “Buzz”. For numbers that are multiples of both three and five, print “FizzBuzz”. Exercise 4