• merc@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 hours ago

    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.