• 7 Posts
  • 66 Comments
Joined 2 years ago
cake
Cake day: December 29th, 2023

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”