Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 630 Bytes

scope.md

File metadata and controls

30 lines (19 loc) · 630 Bytes

Understanding Scope

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])