Previous Up Next

5.43.39  Make a list with zeros: newList

newList(n) makes a list of n zeros.
Input:

newList(3)

Output:

[0,0,0]

Previous Up Next