Exercise: Multiplication Table
Test your skills by printing out a multiplication table using goroutines and waitgroups!
We'll cover the following...
In this exercise, you have been provided with a code which prints out the multiplication table from 1
to 12
. It creates goroutines in a for-loop which also run another for-loop for each number from 1
to 12
. However, nothing is printed out as the ...