8 lines
262 B
Clojure
8 lines
262 B
Clojure
(ns emptyhead.lib.io.print
|
|
"Basic printing thoughts."
|
|
(:require [emptyhead.thought.define :as def]))
|
|
|
|
; should this be [:emptyhead :io :print :print]? should internal and external namespaces match?
|
|
(def/define! "emptyhead.io.print"
|
|
(fn [arg] (print arg)))
|