Loop

From wikieduonline
Revision as of 08:11, 29 April 2020 by Welcome (talk | contribs)
Jump to navigation Jump to search


Infinite loop

go

sum := 0
for {
    sum++ // repeated forever
    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]


Bash

#!/bin/bash
while true; do
 ((var++))
echo $var
done


Related terms


See also

  • http://www.golangpatterns.info/concurrency/parallel-for-loop
  • Advertising: