Also, you can use this for more than just arithmetic. The first thing in the list is the name of the function, and everything else is something that you pass to the function. So you could instead write
(plus 1 2 3 4)
Which would be like plus(1, 2, 3, 4) in other kinds of programming languages.
Also, you can use this for more than just arithmetic. The first thing in the list is the name of the function, and everything else is something that you pass to the function. So you could instead write
Which would be like
plus(1, 2, 3, 4)in other kinds of programming languages.