• 25 Posts
  • 371 Comments
Joined 2 年前
cake
Cake day: 2023年12月29日

help-circle





  • it’s as simple as

    (command argument0 argument1 argument2)
    

    meaning arguments 0, 1 and 2 are applied to command. when an expression is evaluated it dissolves into a value according to its context.

    (+ 1 2 3)
    ; evaluates to 6 in a context where + actually means an addition or sum operation
    
    (* 2 (+ 4 3))
    ; evaluates to 14 (i think)
    

    the absolute killer feature is the elimination of idiotic, man-made madness excused with the term “operator precedence”