go infinite loop

package main

import "fmt"

func main() {
    for {
        fmt.Println("This is an infinite loop.")
    }
}