Set(q)


Variable assignment



    (setq symbol expression)
  • setq does not evaluate the first argument

  •     (set expr1 expr2)
  • set does evaluate the first argument



  • Examples

      (setq a 'b)

      (set a 3)

      !a

      !b

    This website has been archived and is no longer maintained.