Skip to content

Commit fd36233

Browse files
committed
final
1 parent 9b718b4 commit fd36233

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
Go-Programmierung für Java-Entwickler
2-
=====================================
1+
Go Programming for Java Developers
2+
==================================
3+
4+
Notes for my [Go](https://golang.org) programming workshop.
35

46
1 About Me
57
----------
@@ -13,7 +15,9 @@ Go-Programmierung für Java-Entwickler
1315

1416
* **Online tutorial:** https://tour.golang.org
1517
* **Book:** Alan A. A. Donovan, Brian W. Kernighan: _The Go Programming Language_, Addison-Wesley, 2015
16-
* **Help:** Google keyword for the Go programming language is 'golang'
18+
* **Google:** Google keyword for the Go programming language is 'golang'
19+
* **This text:** [https://github.com/fstab/go-programming-for-java-developers](https://github.com/fstab/go-programming-for-java-developers)
20+
* **Slides:** [https://goo.gl/P7XAXn](https://goo.gl/P7XAXn) (docs.google.com)
1721

1822
3 About Go
1923
----------
@@ -699,16 +703,16 @@ Result:
699703
[2 4 6 8 10 12 14 16 18 20]
700704
```
701705

702-
35 Index Ranges
703-
---------------
706+
35 Slicing
707+
----------
704708

705709
Example 1:
706710

707711
```go
708712
slice := createSlice(10)
709713
fmt.Printf("%v\n", slice)
710-
slice := slice[3:7]
711-
applyFunction(slice, f)
714+
part := slice[3:7]
715+
applyFunction(part, f)
712716
fmt.Printf("%v\n", slice)
713717
```
714718

0 commit comments

Comments
 (0)