SlideShare a Scribd company logo
Go Workshop
2016/09/14
•
• Web
A Tour of Go
https://go-tour-jp.appspot.com/welcome/1
Language Specification
https://golang.org/ref/spec
Go
Effective Go
https://golang.org/doc/effective_go.html
A Tour of Go
https://golang.org/doc/
Go Workshop Day 1
Numeric(int, int8, float32, uint, etc...)
String
Array
Slice
Map
Struct
Pointer
Function
Interface
type
struct
Struct
type Name struct {
First string
Last string
}
type email string
type kvs map[string]string
int
( )
var fval float32 = 1.5
ival := int(fval) //
type email string
var m email = "test@example.com"
s := string(m)
type assertion
Function
func Hello() string {
return "hello"
}
Method
Type
type Name struct {
Field1 int
field2 int
}
func (n *Name) FullName() string {
return n.First + " " + n.Last
}
Method
struct
type Tel string
func (t Tel) IsMobile() bool {
//
return true
}
Interface
interface
interface
(implements )
type Printer interface {
Print() string
}
type email string
func (e email) Print() string {
return e
}
Web
Live Coding
package hello
import (
"fmt"
"net/http"
)
func HelloHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello")
}
func main() {
http.ListenAndServe(":7070", http.HandlerFunc(HelloHandler))
}
http.Handler
http.Handler interface
ServeHTTP(ResponseWriter, *Request)
type Handler interface {
ServeHTTP(ResponseWriter, *Request)
}
https://golang.org/src/net/http/server.go
http.HandlerFunc
http.HandlerFunc func(ResponseWriter, *Request)
ServeHTTP
type HandlerFunc func(ResponseWriter, *Request)
func (f HandlerFunc) ServeHTTP(w ResponseWriter, r *Request) {
f(w, r)
}
HackerNews API
( )
https://gist.github.com/kmtr/
cfb91bac834137bd5c3e6b0830170d02
HackerNews API
https://github.com/HackerNews/API
Go
http://pub.maruzen.co.jp/bookmagazine/bookdata/
search/9784621300251.html
Go
http://gihyo.jp/book/2016/978-4-7741-8392-3
A Tour of Go
https://github.com/comail/colog
https://github.com/justinas/alice
https://github.com/pressly/chi
Go Workshop Day 1

More Related Content

PDF
Functional go
PDF
Scala profiling
PDF
HighBatch
PDF
らくちん Go言語
PDF
Introduction to Vim plugins developed by non-Japanese Vimmer (Japanese version)
PDF
Go言語と過ごした一週間
PPTX
Go+revel
PDF
Golang, make and robotics #gocon
Functional go
Scala profiling
HighBatch
らくちん Go言語
Introduction to Vim plugins developed by non-Japanese Vimmer (Japanese version)
Go言語と過ごした一週間
Go+revel
Golang, make and robotics #gocon

Viewers also liked (20)

PDF
Goを知る
PDF
alphawing meets heroku
PDF
cli.go と cli-init で高速にコマンドラインツールを開発する / The command-line tool developed at hi...
PDF
Eureka go 2015_12_12
PPTX
Github第8章
KEY
Chrome osとgo言語からgoogleの今後を妄想してみる
PDF
2015/02/21 GDG神戸 Go on Android ハンズオン&もくもく会
PDF
ISUCON2015 PHPで予選を戦ってみた
PDF
Dockerぐらし!
PDF
勉強会への一歩を踏み出すために
PPTX
マイクロサービスにおけるクエリー言語について
PDF
エンジニアと椅子
PDF
Jenkins study 7 2013-01-28
PPTX
Gunosy Go lang study #6 net http url
PDF
ちょっとだけさわってみる Go言語
PPTX
Go言語の紹介
PDF
AWS IoTでGo!
PDF
インタフェースの実装パターン
PDF
綺麗なスライドを作るための11の原則
PPTX
2150117 infrastructure.nagoya
Goを知る
alphawing meets heroku
cli.go と cli-init で高速にコマンドラインツールを開発する / The command-line tool developed at hi...
Eureka go 2015_12_12
Github第8章
Chrome osとgo言語からgoogleの今後を妄想してみる
2015/02/21 GDG神戸 Go on Android ハンズオン&もくもく会
ISUCON2015 PHPで予選を戦ってみた
Dockerぐらし!
勉強会への一歩を踏み出すために
マイクロサービスにおけるクエリー言語について
エンジニアと椅子
Jenkins study 7 2013-01-28
Gunosy Go lang study #6 net http url
ちょっとだけさわってみる Go言語
Go言語の紹介
AWS IoTでGo!
インタフェースの実装パターン
綺麗なスライドを作るための11の原則
2150117 infrastructure.nagoya
Ad

Similar to Go Workshop Day 1 (20)

PDF
Golang and Eco-System Introduction / Overview
PDF
Go Lang Tutorial
PDF
Learning Go Programming 1st Edition Vladimir Vivien all chapter instant download
PDF
Go serving: Building server app with go
PPTX
Go from a PHP Perspective
ODP
Ready to go
PPTX
Net/http and the http.handler interface
PPTX
Net/http and the http.handler interface
PPTX
Next Generation Language Go
PPTX
Golang basics for Java developers - Part 1
PPTX
Golang workshop - Mindbowser
KEY
Beauty and Power of Go
PPTX
Lightning talk: Go
PDF
Fun with functions
PDF
Geeks Anonymes - Le langage Go
PDF
Learning Go Programming 1st Edition Vladimir Vivien
PDF
Introduction to Go programming language
PDF
entwickler.de Go Day: Go Web Development 101
PDF
Go_ Get iT! .pdf
PPTX
Go Programming Language (Golang)
Golang and Eco-System Introduction / Overview
Go Lang Tutorial
Learning Go Programming 1st Edition Vladimir Vivien all chapter instant download
Go serving: Building server app with go
Go from a PHP Perspective
Ready to go
Net/http and the http.handler interface
Net/http and the http.handler interface
Next Generation Language Go
Golang basics for Java developers - Part 1
Golang workshop - Mindbowser
Beauty and Power of Go
Lightning talk: Go
Fun with functions
Geeks Anonymes - Le langage Go
Learning Go Programming 1st Edition Vladimir Vivien
Introduction to Go programming language
entwickler.de Go Day: Go Web Development 101
Go_ Get iT! .pdf
Go Programming Language (Golang)
Ad

Recently uploaded (20)

PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPT
Mechanical Engineering MATERIALS Selection
PPTX
UNIT 4 Total Quality Management .pptx
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PPTX
Lecture Notes Electrical Wiring System Components
PDF
Digital Logic Computer Design lecture notes
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
Geodesy 1.pptx...............................................
PPTX
OOP with Java - Java Introduction (Basics)
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPT
Project quality management in manufacturing
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
PPT on Performance Review to get promotions
bas. eng. economics group 4 presentation 1.pptx
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
Mechanical Engineering MATERIALS Selection
UNIT 4 Total Quality Management .pptx
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Automation-in-Manufacturing-Chapter-Introduction.pdf
Lecture Notes Electrical Wiring System Components
Digital Logic Computer Design lecture notes
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
Geodesy 1.pptx...............................................
OOP with Java - Java Introduction (Basics)
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Project quality management in manufacturing
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPT on Performance Review to get promotions

Go Workshop Day 1