I'd like to produce a list of $n-$tuples made from the elements of Range[n] coupled with a constant value $m$.
Here's an example, given $n=3$:
Range[3] = {1,2,3}
What I want to obtain is:
{{1,m},{2,m},{3,m}}
I've tried using Tuple, but I couldn't get it to make what I want.
