Loop
Jump to navigation
Jump to search
Infinite loop
go
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]
Bash
#!/bin/bash while true; do ((var++)) echo $var done
Related terms
See also
Advertising: