Is the code from the previous page still in scope?
john
No. The scope of definitions for Klipse is only the page.
We can hide code from the page and include it in the evaluation
(def a 42)
a
Lets include some external libs
(ns my.combinatorics
(:require [clojure.math.combinatorics :refer [permutations]]))
(permutations [1 2 3])