mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-23 06:03:07 +03:00
[go/en] add an example for range - fixes #351
This commit is contained in:
parent
a0af5e9a7b
commit
cfa26f23fd
@ -177,6 +177,14 @@ func learnFlowControl() {
|
||||
break // Just kidding.
|
||||
continue // Unreached.
|
||||
}
|
||||
|
||||
// you can use range to iterate over an array, a slice, a string, a map, or a channel.
|
||||
// range returns one (channel) or two values (array, slice, string and map)
|
||||
for key, value := range map[string]int{"one": 1, "two": 2, "three": 3} {
|
||||
// for each pair in the map, print key and value
|
||||
fmt.Printf("key=%s, value=%d\n", key, value)
|
||||
}
|
||||
|
||||
// As with for, := in an if statement means to declare and assign
|
||||
// y first, then test y > x.
|
||||
if y := expensiveComputation(); y > x {
|
||||
|
Loading…
Reference in New Issue
Block a user