Difference between revisions of "Loop"
Jump to navigation
Jump to search
↑ http://www.golangpatterns.info/concurrency/parallel-for-loop
| Line 6: | Line 6: | ||
[[go]] | [[go]] | ||
<pre> | <pre> | ||
| − | sum := 0 | + | package main |
| − | for { | + | import "fmt" |
| − | sum++ | + | |
| + | func main() { | ||
| + | sum := 0 | ||
| + | for { | ||
| + | sum++ | ||
fmt.Println(sum) | fmt.Println(sum) | ||
| + | } | ||
} | } | ||
</pre> | </pre> | ||
Revision as of 08:12, 29 April 2020
Infinite loop
package main
import "fmt"
func main() {
sum := 0
for {
sum++
fmt.Println(sum)
}
}
Go do not support parallel for-loops , deprecated Sun's Fortress was support it. But they are easy to implement using goroutines.[1]
#!/bin/bash while true; do ((var++)) echo $var done
Related terms
See also
- Programming: C, Python,
go,loop,while,for,if,variable, Error handling, Regex, Function, IDE, await, R (programming language), XACML, Type, Class inheritance, Methods, Scheme, Array, Deserialization, Fortran
Advertising: