Pages

Programming is Poetry in Motion

P vs. NP: Is programming not poetry?

Allegation

The process of preparing programs for a digital computer is especially attractive,
not only because it can be economically and scientifically rewarding, but also
because it can be an aesthetic experience much like composing poetry or music.

— DONALD ERVIN KNUTH, The Art of Computer Programming (1968)

Prosecuting Witness

Exhibit A

Try Case


/* Comment */

  const butt = document.querySelector("button");
  butt.execute = function() {
    eval(document.querySelector("textarea").value);
  };
  butt.addEventListener("click", butt.execute);