From 962dd5a55be5d5faa6b07290f092dd3073a65d9b Mon Sep 17 00:00:00 2001 From: Ashley Bao Date: Mon, 9 Jan 2023 16:42:28 -0500 Subject: [PATCH] added explanation of session namespace --- src/propeller/session.cljc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/propeller/session.cljc b/src/propeller/session.cljc index ead64f2..4ef6f5d 100755 --- a/src/propeller/session.cljc +++ b/src/propeller/session.cljc @@ -1,3 +1,10 @@ +; The "session" namespace is for trying things out interactively. +; For example, you can use it to test a new Push instruction by running a program that uses it and seeing the result. +; You might just want to do this interactively in the REPL, but the session file makes it a little easier since it alerady +; requires most of the namespaces you'll want to refer to. +; The commented-out stuff is a reminder of how to do some basic things. + + (ns propeller.session (:require [propeller.genome :as genome] [propeller.gp :as gp]