I want to create a list that is the multiples of a number. For example [2; 4; 6; 8; 10] would be the multiples of 2 between 0 and 10.
How would I dynamically create such a list of the multiples of x? Is it possible to do it without setting an upper bound?
One way to do it would be to create a list between 0 and some crazy large number and then filter it using the mod function. Trying to test this, creating a list of 0 to some crazy large number caused an out of memory exception (after a 30 second or so wait).
I feel like F# has some super simple and awesome way to build such a list but I'm too much of a newb to know what it is, yet. Help?