I am trying to understand this example from the Go Tour.
What is the significance of this last comma on line 3
fmt.Println(
pow(3, 2, 10),
pow(3, 3, 20),
)
How do line breaks generally modify the code in go.
I know, that without the line breaks, I can write this statement as
fmt.Println( pow(3, 2, 10), pow(3, 3, 20) )
and it would compile.
So, why is the extra comma needed with line breaks