Skip to content

Instantly share code, notes, and snippets.

% tabela
\begin{table}[h]
\centering
\begin{tabular}{ l|rrrr }
\toprule
& Problematic methods & Search Duration & Transform Duration \\
\midrule
fenixedu-academic & 2 & 498.83s & 574.35s \\
(defun inc-generator (zero incer)
#'(lambda ()
(progn (setf zero (funcall incer zero))
zero)))
(defun init-vec (dim initer)
(if (= 0 dim)
()
(init-vec (cons (initer) (init-vec (- dim 1) initer)))))
/**********************
* fordingTheRiver.js *
**********************
*
* And there's the river. Fortunately, I was prepared for this.
* See the raft on the other side?
*
* Everything is going according to plan.
*/